Lungsh0t
HHomarr
•Created by Lungsh0t on 4/11/2025 in #💬・get-help
Portainer stack - Failed to run job
Any help would be much appreciated!
Here is my setup:
Docker host: Ubuntu 20.04.6 LTS VM running on Hyper-V. Manged via portainer stacks.
Data lives on a windows 2019 fileserver on the same network. (FS1)
On the docker host, I have a CIFS shared drive on FS1 mapped to /mnt/dockervolumes/
I have many other stacks using this mount point in their docker-compose files (portainer stacks) and haven't had many permission issues at all.
When starting a new Homarr stack, I use this as my compose file:
__
services:
homarr:
container_name: homarr
image: ghcr.io/homarr-labs/homarr:latest
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock # Optional, only if you want docker integration
- /mnt/docker_volumes/homarr:/appdata
environment:
- SECRET_ENCRYPTION_KEY=keyishere
ports:
- '7575:7575'
__
I have tried using "user: uid:gid" to specify the owner of the "/mnt/docker_volumes/homarr" folder with no luck.
Tried chown and chmod 777 with the specified user.
When the stack starts - this is what I get in the container log:
2025-04-11T20:50:00.499Z error: Failed to run job 'mediaRequestList': SqliteError: no such table: serverSetting
2025-04-11T20:50:00.499Z error: Failed to run job 'indexerManager': SqliteError: no such table: serverSetting
2025-04-11T20:50:00.499Z error: Failed to run job 'healthMonitoring': SqliteError: no such table: serverSetting
2025-04-11T20:50:00.649Z error: Failed to run job 'minecraftServerStatus': SqliteError: no such table: item
2025-04-11T20:50:00.650Z error: Failed to run job 'mediaTranscoding': SqliteError: no such table: serverSetting
2025-04-11T20:50:00.651Z error: Failed to run job 'networkController': SqliteError: no such table: serverSetting
2025-04-11T20:50:05.496Z error: Failed to run job 'mediaServer': SqliteError: no such table: serverSetting
2025-04-11T20:50:05.496Z error: Failed to run job 'downloads': SqliteError: no such table: serverSetting
2025-04-11T20:50:05.496Z error: Failed to run job 'dnsHole': SqliteError: no such table: serverSetting
2025-04-11T20:50:05.496Z error: Failed to run job 'healthMonitoring': SqliteError: no such table: serverSetting
2025-04-11T20:50:10.502Z error: Failed to run job 'mediaServer': SqliteError: no such table: serverSetting
2025-04-11T20:50:10.502Z error: Failed to run job 'downloads': SqliteError: no such table: serverSetting
2025-04-11T20:50:10.503Z error: Failed to run job 'dnsHole': SqliteError: no such table: serverSetting
2025-04-11T20:50:10.503Z error: Failed to run job 'healthMonitoring': SqliteError: no such table: serverSetting
2025-04-11T20:50:15.505Z error: Failed to run job 'mediaServer': SqliteError: no such table: serverSetting
2025-04-11T20:50:15.505Z error: Failed to run job 'downloads': SqliteError: no such table: serverSetting
2025-04-11T20:50:15.505Z error: Failed to run job 'dnsHole': SqliteError: no such table: serverSetting
2025-04-11T20:50:15.505Z error: Failed to run job 'healthMonitoring': SqliteError: no such table: serverSetting
2025-04-11T20:50:20.512Z error: Failed to run job 'mediaServer': SqliteError: no such table: serverSetting
2025-04-11T20:50:20.512Z error: Failed to run job 'downloads': SqliteError: no such table: serverSetting
2025-04-11T20:50:20.512Z error: Failed to run job 'dnsHole': SqliteError: no such table: serverSetting
2025-04-11T20:50:20.512Z error: Failed to run job 'healthMonitoring': SqliteError: no such table: serverSetting
20 replies