dotfiles/docker/freshrss/docker-compose.toml

20 lines
413 B
TOML

[services.freshrss]
image = "linuxserver/freshrss"
container_name = "freshrss"
restart = "unless-stopped"
networks = ["freshrss", "postgres", "proxy"]
environment = ["PUID=1000", "PGID=985", "TZ=Europe/Helsinki"]
volumes = [
"/docker/freshrss/freshrss:/config",
"/etc/localtime:/etc/localtime:ro",
]
[networks.freshrss]
external = false
[networks.postgres]
external = true
[networks.proxy]
external = true