27 lines
510 B
YAML
27 lines
510 B
YAML
version: "3"
|
|
|
|
services:
|
|
server:
|
|
image: gitea/gitea:latest
|
|
container_name: gitea
|
|
environment:
|
|
- USER_UID=2000
|
|
- USER_GID=2000
|
|
restart: always
|
|
networks:
|
|
- gitea
|
|
volumes:
|
|
- /srv/docker/gitea:/data
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
# - /home/git/.ssh/:/data/git/.ssh
|
|
ports:
|
|
- "3300:3000"
|
|
- "3322:22"
|
|
|
|
networks:
|
|
gitea:
|
|
ipam:
|
|
config:
|
|
- subnet: 172.20.30.0/24
|