Создал(а) 'gitea/docker-compose.yaml'

master
pipistrello 2022-01-10 15:47:15 +03:00
parent bd0b3fe83d
commit 7704dff8dc
1 changed files with 16 additions and 0 deletions

16
gitea/docker-compose.yaml Normal file
View File

@ -0,0 +1,16 @@
version: "3"
services:
server:
image: gitea/gitea:latest
container_name: gitea
environment:
- USER_UID=1000
- USER_GID=1000
restart: always
volumes:
- /mnt/containers/gitea/container-data/data:/data:Z
- /etc/timezone:/etc/timezone
- /etc/localtime:/etc/localtime
ports:
- "3000:3000"