I currently use docker for windows, using a docker compose yml file.. which is here
services: jellyseerr: image: fallenbagel/jellyseerr:latest container_name: jellyseerr environment: - LOG_LEVEL=debug - TZ=Europe/London - PORT=5055 - JELLYSEERR_ENABLE_JELLYFIN=true ports: - "5055:5055" volumes: - T:/Websites/Jellyseerr/appdata/config:/app/config - T:/Websites/Jellyseerr/app/public:/app/public healthcheck: test: ["CMD-SHELL", "curl -f http://localhost:5056/api/v1/status || exit 1"] start_period: 20s timeout: 3s interval: 15s retries: 3 restart: unless-stopped
I can get it up and running using the following compose yml file..
`services:
seerr:
image: ghcr.io/seerr-team/seerr:latest
container_name: seerr
init: true
environment:
- LOG_LEVEL=debug
- TZ=Europe/London
- PORT=5055
- JELLYSEERR_ENABLE_JELLYFIN=true
ports:
- "5055:5055"
volumes:
- seerr_config:/app/config
- T:/Websites/Jellyseerr/app/public:/app/public
healthcheck:
test: ["CMD-SHELL", "curl -f http://localhost:5055/api/v1/status || exit 1"]
start_period: 20s
timeout: 3s
interval: 15s
retries: 3
restart: unless-stopped
volumes:
seerr_config:`
However this displays the following message on a fresh install.
The /app/config volume mount was not configured properly. All data will be cleared when the container is stopped or restarted.