mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-06-27 16:57:05 +00:00
27 lines
443 B
YAML
27 lines
443 B
YAML
# https://about.gitea.com/
|
|
|
|
# Private, Fast, Reliable DevOps Platform
|
|
|
|
name: gitea
|
|
|
|
services:
|
|
gitea:
|
|
image: gitea/gitea
|
|
container_name: gitea
|
|
environment:
|
|
- USER_UID=1000
|
|
- USER_GID=1000
|
|
volumes:
|
|
- ./data:/data
|
|
#- /etc/timezone:/etc/timezone:ro
|
|
#- /etc/localtime:/etc/localtime:ro
|
|
ports:
|
|
- 3004:3000
|
|
- 222:22
|
|
networks:
|
|
- proxy
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|
|
|