25 lines
481 B
YAML
Executable File
25 lines
481 B
YAML
Executable File
networks:
|
|
gitea:
|
|
external: false
|
|
proxy:
|
|
external: true
|
|
|
|
services:
|
|
server:
|
|
image: gitea/gitea:latest
|
|
container_name: gitea
|
|
environment:
|
|
- USER_UID=1001
|
|
- USER_GID=1001
|
|
restart: always
|
|
networks:
|
|
- proxy
|
|
volumes:
|
|
- /zstore/Docker-volumes/Gitea:/data
|
|
# - /home/git/.ssh/:/data/git/.ssh
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
ports:
|
|
# - "3000:3000"
|
|
- "2222:2222"
|