dotfiles/docker/freshrss/docker-compose.yaml
Marko Korhonen 037967efd7 Convert compose files to yaml
toml conversion stopped working, don't want to fix it
2024-11-04 10:27:34 +02:00

25 lines
452 B
YAML

volumes:
config: {}
services:
freshrss:
image: linuxserver/freshrss
container_name: freshrss
restart: unless-stopped
networks:
- freshrss
- postgres
- proxy
environment:
- PUID=1000
- PGID=985
- TZ=Europe/Helsinki
volumes:
- config:/config
- /etc/localtime:/etc/localtime:ro
networks:
freshrss:
external: false
postgres:
external: true
proxy:
external: true