26 lines
494 B
YAML
Executable File
26 lines
494 B
YAML
Executable File
networks:
|
|
gitea:
|
|
external: false
|
|
proxy:
|
|
external: true
|
|
|
|
services:
|
|
server:
|
|
image: gitea/gitea:latest
|
|
container_name: gitea
|
|
environment:
|
|
- USER_UID=1000
|
|
- USER_GID=1000
|
|
restart: always
|
|
networks:
|
|
- gitea
|
|
- 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:22"
|