diff --git a/freshrss/compose.yaml b/freshrss/compose.yaml new file mode 100644 index 0000000..e25c098 --- /dev/null +++ b/freshrss/compose.yaml @@ -0,0 +1,26 @@ +services: + freshrss: + image: linuxserver/freshrss:1.28.1 + container_name: freshrss + volumes: + # Config + - $APPDATA/freshrss:/config + environment: + PUID: $PUID + PGID: $PGID + TZ: $TZ + ports: + - 8083:80 + # labels: + # - "traefik.enable=true" + # - "traefik.http.routers.freshrss.rule=Host(`freshrss.${LOCAL_DOMAIN}`)" + # - "traefik.http.routers.freshrss.entrypoints=https" + # - "traefik.http.routers.freshrss.tls=true" + # - "traefik.http.services.freshrss.loadbalancer.server.port=80" + # networks: + # - proxy + restart: unless-stopped + +# networks: +# proxy: +# external: true \ No newline at end of file