27 lines
580 B
YAML
27 lines
580 B
YAML
name: gitea
|
|
|
|
services:
|
|
gitea:
|
|
image: gitea/gitea:1.25.4
|
|
container_name: gitea
|
|
restart: unless-stopped
|
|
environment:
|
|
USER_UID: "1000"
|
|
USER_GID: "1000"
|
|
GITEA_CUSTOM: /data/gitea
|
|
volumes:
|
|
- /srv/gitea/data:/data
|
|
- /srv/gitea/config:/config
|
|
- /srv/gitea/logs:/var/log/gitea
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
ports:
|
|
- "2222:2222"
|
|
- "127.0.0.1:3001:3000"
|
|
networks: [default, monitoring]
|
|
|
|
networks:
|
|
monitoring:
|
|
external: true
|
|
name: monitoring_monitoring
|