#The /app/config volume mount was not configured properly. All data will be cleared when the containe

73 messages · Page 1 of 1 (latest)

nocturne turtle
#

my config does not look incorrect based on the error....and folder permissions look good too

container_name: seerr
image: ghcr.io/seerr-team/seerr:latest
init: true
environment:
- LOG_LEVEL=debug
- TZ=America/Los Angeles
- PORT=5055 #optional
ports:
- 5055:5055
volumes:
- /volume3/docker/arr-stack/seerr:/app/config

what logs can I dig up to help understand why this is happening

thanks,
R

signal stirrup
#

That is not an error.

#

Thats a warning

#

If config is being written to /volume3/docker/arr-stack/seerr then you're good to ignore it

nocturne turtle
#

i dont see anything in that folder

#

my .env file is also setting the user and group id to what is on the directories

ACCOUNT UID AND GID

PUID=1000
PGID=10

signal stirrup
#

Our image is rootless

#

Your perms should be 1000:1000 as stated in our docs

#

So you should do sudo chown -R 1000:1000 /volume3/docker/arr-stack/seerr

#

That user is for Node user

#

Not your user

#

Node user that runs inside

#

The image

nocturne turtle
#

I cant change the 10...on ugreen nas has some sql lite db keeping track of that internally....

signal stirrup
#

Thats not what i meant

#

You dont need an existing user on your host that has :10

#

You can absolutely change the perms of a folder to whatever you want in host

nocturne turtle
#

somehow this didnt work before but it seems to have this time, but still nothing in the app folder, even though its 1000:1000

signal stirrup
#

If not restart seerr now

nocturne turtle
#

stopped, restarted. went to seerr/setup to see if its still having that same problem. but no way to get back there now since its set up and sees jellyfin/radar/sonarr?

#

so kill it more that just shutting down?

signal stirrup
#

Stop it

#

Now wait

#

Dont stop it

#

I have an idea

#

To see if its mounted properl

#

Can you do

#

docker exec -it seerr sh

#

Then cd /app/config

#

Then ls -alh .

nocturne turtle
#

i seez stuff!

#

so I guess its ok

#

thanks for the help!

signal stirrup
signal stirrup
#

And not in the mounted path

#

Then a recreation of container will reset everything

signal stirrup
#

Youre mounting to /volume3/docker/arr-stack/seerr but then youre looking inside /volume3/docker/arr-stack/seerr/app

#

Two different paths

nocturne turtle
#

how should volume section be setup? :/config and not :/app/config?

#

the rest of the ARRs are fine with just the :/config

#

but the warning/error is specific to /app/config

signal stirrup
#

:/app/config

And :/config

Are internal container paths

#

You dont have control over that

#

Thats decided by us

#

What i meant was

signal stirrup
#

Youre at /volume3/docker/arr-stack/seerr/app

#

Not /volume3/docker/arr-stack/seerr

signal stirrup
#

Just go to cd /volume3/docker/arr-stack/seerr then youll see your files

nocturne turtle
#

nope...she be empty

signal stirrup
#

Show me your compose again

nocturne turtle
#

seerr:
<<: *common-keys
container_name: seerr
image: ghcr.io/seerr-team/seerr:latest
init: true
environment:
- LOG_LEVEL=debug
- TZ=America/Los Angeles
- PORT=5055 #optional
ports:
- 5055:5055
volumes:
- /volume3/docker/arr-stack/seerr:/app/config

signal stirrup
#

Can you do docker inspect seerr

nocturne turtle
#

that dumps quite a lot...anything specific

#

"HostConfig": {
"Binds": [
"/volume3/docker/arr-stack/seerr:/config:rw"

#

"ContainerIDFile": "",
"LogConfig": {
"Type": "json-file",
"Config": {}
},
"NetworkMode": "arr-stack_default",
"PortBindings": {
"5055/tcp": [
{
"HostIp": "",
"HostPort": "5055"
}
]
},
"RestartPolicy": {
"Name": "unless-stopped",
"MaximumRetryCount": 0
},
"AutoRemove": false,
"VolumeDriver": "",
"VolumesFrom": null,

signal stirrup
signal stirrup
#

You need to rerun docker compose up -d

#

To recreate with /app/config as the internal path

signal stirrup
#

Thats your issue

nocturne turtle
#

ok....its recreaded, files exist, no app/config banner error.....

signal stirrup