mirror of
https://github.com/theoleuthardt/homelab-docker-compose.git
synced 2026-06-05 15:41:07 +00:00
24 lines
431 B
YAML
24 lines
431 B
YAML
services:
|
|
git:
|
|
image: codeberg.org/forgejo/forgejo:11
|
|
container_name: forgejo
|
|
environment:
|
|
- USER_UID=1000
|
|
- USER_GID=1000
|
|
restart: always
|
|
networks:
|
|
- forgejo
|
|
volumes:
|
|
- forgejo_data:/data
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
ports:
|
|
- 3131:3000
|
|
- 222:22
|
|
|
|
networks:
|
|
forgejo:
|
|
external: false
|
|
|
|
volumes:
|
|
forgejo_data:
|