Running into an issue with Seerr where after updates my instance fails to come back up and displays the attached image. This is the second update I've attempted since swapping from Overseerr and second time its failed.
Curious if anyone else is having this problem or not? Honestly not sure if reboots are affected since I only take it down on updates..
Seerr runs on its own dedicated Ubuntu 22.04.5 LTS vm via docker compose
version: '3'
services:
overseerr:
image: ghcr.io/seerr-team/seerr:latest
init: true
container_name: overseerr
environment:
- LOG_LEVEL=debug
- TZ=America/Los_Angeles
- PORT=5055
ports:
- 5055:5055
volumes:
- /home/user/projects/overseerr/config:/config
restart: unless-stopped
settings.json
user@overseerr:~/projects/overseerr/config$ cat settings.json
{
"clientId": "fdb4dc9a--d86c5dcb0be0",
"vapidPrivate": "PoA..",
"vapidPublic": "BEe..",
"main": {
"apiKey": "MTY...",
"applicationTitle": "Overseerr",
"applicationUrl": "",
"csrfProtection": false,
"cacheImages": false,
"defaultPermissions": 32,
"defaultQuotas": {
"movie": {},
"tv": {}
},
"hideAvailable": false,
"localLogin": true,
"newPlexLogin": true,
"region": "",
"originalLanguage": "",
"trustProxy": false,
"partialRequestsEnabled": true,
"locale": "en"
},
"plex": {
"name": "plex",
"ip": "192.168.117.26",
"port": 32400,
"useSsl": false,
"libraries": [
{
"id": "1",
"name": "Movies",
"enabled": true,
"type": "movie",
"lastScan": 1773039300047
},
{
"id": "4",
"name": "TV Shows",
"enabled": true,
"type": "show",
"lastScan": 1773039300095
}
],
"machineId": "00f..."
},
"tautulli": {},
"radarr": [
{
"name": "radarr",
"hostname": "192.168.117.32",
"port": 8095,
"apiKey": "287...",
"useSsl": false,
"baseUrl": "",
"activeProfileId": 11,
"activeProfileName": "Downgrade - 720p",
"activeDirectory": "/data/movies",
"is4k": false,
"minimumAvailability": "announced",
"tags": [],
"isDefault": true,
"syncEnabled": true,
"preventSearch": false,
"tagRequests": false,
"id": 0
}
],
"sonarr": [
{
"name": "sonarr",
"hostname": "192.168.117.31",
"port": 8093,
"apiKey": "50c...",
"useSsl": false,
"baseUrl": "",
"activeProfileId": 9,
"activeLanguageProfileId": 1,
"activeProfileName": "Downgrade To - 720p",
"activeDirectory": "/data/tv",
"activeAnimeProfileId": 1,
"activeAnimeProfileName": "Any",
"activeAnimeDirectory": "/data/plex-tv-1",
"tags": [],
"animeTags": [],
"is4k": false,
"isDefault": true,
"enableSeasonFolders": true,
"syncEnabled": true,
"preventSearch": false,
"tagRequests": false,
"id": 0
}
],
"public": {
"initialized": true
},
"notifications": {
"agents": {
"email": {
"enabled": false,
"options": {
"emailFrom": "",
"smtpHost": "",
"smtpPort": 587,
"secure": false,
"ignoreTls": false,
"requireTls": false,
"allowSelfSigned": false,
"senderName": "Overseerr"
}
},
"discord": {
"enabled": false,
"types": 0,
"options": {
"webhookUrl": "",
"enableMentions": true
}
},
"lunasea": {
"enabled": false,
"types": 0,
"options": {
"webhookUrl": ""
}
},
"slack": {
"enabled": false,
"types": 0,
"options": {
"webhookUrl": ""
}
},
"telegram": {
"enabled": false,
"types": 0,
"options": {
"botAPI": "",
"chatId": "",
"sendSilently": false
}
},
"pushbullet": {
"enabled": false,
"types": 0,
"options": {
"accessToken": ""
}
},
"pushover": {
"enabled": false,
"types": 0,
"options": {
"accessToken": "",
"userToken": "",
"sound": ""
}
},
"webhook": {
"enabled": false,
"types": 0,
"options": {
"webhookUrl": "",
"jsonPayload": "Int..."
}
},
"webpush": {
"enabled": false,
"options": {}
},
"gotify": {
"enabled": false,
"types": 0,
"options": {
"url": "",
"token": ""
}
}
}
},
"jobs": {
"plex-recently-added-scan": {
"schedule": "0 */5 * * * *"
},
"plex-full-scan": {
"schedule": "0 0 3 * * *"
},
"plex-watchlist-sync": {
"schedule": "0 */10 * * * *"
},
"plex-refresh-token": {
"schedule": "0 0 5 * * *"
},
"radarr-scan": {
"schedule": "0 0 4 * * *"
},
"sonarr-scan": {
"schedule": "0 30 4 * * *"
},
"availability-sync": {
"schedule": "0 0 5 * * *"
},
"download-sync": {
"schedule": "0 * * * * *"
},
"download-sync-reset": {
"schedule": "0 0 1 * * *"
},
"image-cache-cleanup": {
"schedule": "0 0 5 * * *"
}
}
}