dotfiles/docker/forgejo/docker-compose.toml

18 lines
374 B
TOML
Raw Normal View History

[volumes]
data = {}
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"]
2022-12-17 14:46:53 +02:00
restart = "unless-stopped"
networks = ["postgres", "proxy"]
2023-04-03 23:20:36 +03:00
ports = ["22:22"]
volumes = ["data:/data", "/etc/localtime:/etc/localtime:ro"]
2022-12-17 14:46:53 +02:00
[networks.postgres]
external = true
[networks.proxy]
external = true