dotfiles/docker/forgejo/docker-compose.toml

15 lines
398 B
TOML
Raw Normal View History

2022-12-17 14:46:53 +02:00
[services.forgejo]
2022-12-17 15:05:22 +02:00
image = "git.korhonen.cc/functionalhacker/forgejo-asciidoc"
2022-12-17 14:46:53 +02:00
container_name = "forgejo"
environment = ["TZ=Europe/Helsinki", "USER_UID=1000", "USER_GID=1000"]
restart = "unless-stopped"
networks = ["postgres", "proxy"]
2023-04-03 23:20:36 +03:00
ports = ["22:22"]
2022-12-17 14:46:53 +02:00
volumes = ["/docker/forgejo:/data", "/etc/localtime:/etc/localtime:ro"]
[networks.postgres]
external = true
[networks.proxy]
external = true