Replies: 1 comment
-
Both Tautulli and Overseer complain if you use a Docker Compose volume for some reason, I'm not sure why. I think it's a confusion of the developers that, just because they're Docker named volumes, doesn't mean they're volatile. It literally just means they exist in |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey all
I cant figure out why Im getting the following issue
The /app/config volume mount was not configured properly. All data will be cleared when the container is stopped or restarted.
My Compose file is as follows
services: overseerr: image: sctx/overseerr:latest container_name: overseerr environment: - LOG_LEVEL=debug - TZ=Europe/London - PORT=5055 #optional ports: - 5055:5055 volumes: - overseerr_config:/app/config restart: unless-stopped volumes: overseerr_config:
The volume is created correctly and I can see the json config and logs so permissions cant be a problem. I can delete the container and recreate and all my setting are correct.
Docker is configured to store volumes in /opt/docker
Log content is
`yarn run v1.22.19
$ NODE_ENV=production node dist/index.js
2024-03-02T23:50:58.828Z [info]: Commit Tag: $GIT_SHA
2024-03-02T23:50:59.237Z [info]: Starting Overseerr version 1.33.2
warn - You have enabled experimental features (scrollRestoration, largePageDataBytes) in next.config.js.
warn - Experimental features are not covered by semver, and may cause unexpected or broken application behavior. Use at your own risk.
2024-03-02T23:51:00.477Z [info][Notifications]: Registered notification agents
2024-03-02T23:51:00.510Z [info][Jobs]: Scheduled jobs loaded
2024-03-02T23:51:00.710Z [info][Server]: Server ready on port 5055
2024-03-02T23:52:00.013Z [debug][Jobs]: Starting scheduled job: Download Sync
2024-03-02T23:53:00.012Z [debug][Jobs]: Starting scheduled job: Download Sync
2024-03-02T23:54:00.013Z [debug][Jobs]: Starting scheduled job: Download Sync
2024-03-02T23:55:00.011Z [debug][Jobs]: Starting scheduled job: Download Sync
2024-03-02T23:55:00.032Z [info][Jobs]: Starting scheduled job: Plex Recently Added Scan
2024-03-02T23:55:00.036Z [info][Plex Scan]: Scan starting {"sessionId":"0d653b6c-ebf5-45c0-ba8c-18e3643f2ac2"}
2024-03-02T23:55:00.063Z [warn][Plex Scan]: No admin configured. Plex scan skipped.
2024-03-02T23:56:00.011Z [debug][Jobs]: Starting scheduled job: Download Sync
2024-03-02T23:57:00.009Z [debug][Jobs]: Starting scheduled job: Download Sync `
Can anyone help?`
Beta Was this translation helpful? Give feedback.
All reactions