I have been running the following image lscr.io/linuxserver/radarr:latest, and it worked fine after watchtower updated it last week. I added a new directory to ran the command:
docker-compose -f /data/apps/docker/docker-compose/radarr-homeauto02.yml up -d
That provided errors:
Recreating d6c0a9e7bb45_radarr …
ERROR: for d6c0a9e7bb45_radarr ‘ContainerConfig’
ERROR: for radarr ‘ContainerConfig’
Traceback (most recent call last):
File “/usr/bin/docker-compose”, line 33, in
sys.exit(load_entry_point(‘docker-compose==1.29.2’, ‘console_scripts’, ‘docker-compose’)())
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File “/usr/lib/python3/dist-packages/compose/cli/main.py”, line 81, in main
command_func()
File “/usr/lib/python3/dist-packages/compose/cli/main.py”, line 203, in perform_command
handler(command, command_options)
File “/usr/lib/python3/dist-packages/compose/metrics/decorator.py”, line 18, in wrapper
My docker file looks like this, and the original one is producing the same errors now too:
your docker compose version is WILDLY out of date and unsupported by docker. This leads me to wonder if your kernel and docker version are also wildly out of date and causing the problem. Provide the output of uname -mr && docker version
your formatting for the compose itself is too poor to determine an issue there (please proofread posts) though I doubt this is the issue, i suspect it’s purely with your out of date components. for reference end of support for compose v1 was july 2023.
NOTE: we do not recommend installing docker from your distributions repo (you installed from ubuntu repo) we recommend following docker’s instructions for installation Ubuntu | Docker Docs
i would get your docker and docker compose up to date and try again, if the problem persists, submit the info again
I show currently:
docker-ce is already the newest version (5:28.3.2-1~ubuntu.24.04~noble).
docker-ce-cli is already the newest version (5:28.3.2-1~ubuntu.24.04~noble).
containerd.i o is already the newest version (1.7.27-1).
docker-buildx-plugin is already the newest version (0.25.0-1~ubuntu.24.04~noble).
docker-compose-plugin is already the newest version (2.38.2-1~ubuntu.24.04~noble).
docker hello-world - works
launching the command does not with the same errors it looks like
docker-compose -f /data/apps/docker/docker-compose/radarr-homeauto02.yml up -d
Recreating d6c0a9e7bb45_radarr …
ERROR: for d6c0a9e7bb45_radarr ‘ContainerConfig’
ERROR: for radarr ‘ContainerConfig’
Traceback (most recent call last):
File “/usr/bin/docker-compose”, line 33, in
sys.exit(load_entry_point(‘docker-compose==1.29.2’, ‘console_scripts’, ‘docker-compose’)())
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File “/usr/lib/python3/dist-packages/compose/cli/main.py”, line 81, in main
command_func()
File “/usr/lib/python3/dist-packages/compose/cli/main.py”, line 203, in perform_command
handler(command, command_options)
File “/usr/lib/python3/dist-packages/compose/metrics/decorator.py”, line 18, in wrapper
I notice the version is still 1.29.2 in the error, did I miss something on the updates?