Radarr error on recreat

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:

Blockquote
version: “3.2”
services:
radarr:
container_name: radarr
image: lscr.io/linuxserver/radarr:latest
restart: unless-stopped
logging:
driver: json-file
ports:
- 7878:7878
environment:
- PUID=1028
- PGID=100
- TZ=America/Chicago
volumes:
- /etc/localtime:/etc/localtime:ro
- /data/docker_local/radarr/config:/config
- /data/media:/data/media
- /data/media2:/data/media2

Blockquote

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.

root@nab-homeauto02:~# uname -mr && docker version
6.8.0-63-generic x86_64
Client:
Version: 27.5.1
API version: 1.47
Go version: go1.22.2
Git commit: 27.5.1-0ubuntu3~24.04.2
Built: Mon Jun 2 11:51:53 2025
OS/Arch: linux/amd64
Context: default

Server:
Engine:
Version: 27.5.1
API version: 1.47 (minimum version 1.24)
Go version: go1.22.2
Git commit: 27.5.1-0ubuntu3~24.04.2
Built: Mon Jun 2 11:51:53 2025
OS/Arch: linux/amd64
Experimental: false
containerd:
Version: 1.7.27
GitCommit:
runc:
Version: 1.2.5-0ubuntu1~24.04.1
GitCommit:
docker-init:
Version: 0.19.0
GitCommit:

Uploaded image since the formating did not hold.

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

Okay , thanks. I will work on that and hopefully not break anything else!

I went through and followed the update steps

1986 apt-get update
1987 apt-get install ca-certificates curl
1988 install -m 0755 -d /etc/apt/keyrings
1989 curl -fsSL download.docker/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
1990 chmod a+r /etc/apt/keyrings/docker.asc
1991 cat /etc/apt/sources.list.d/docker.list
1992 echo “deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] download.docker/linux/ubuntu
1993 $(. /etc/os-release && echo “${UBUNTU_CODENAME:-$VERSION_CODENAME}”) stable” | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
1994 apt-get update
1995 apt-get install docker-ce docker-ce-cli containerd.i o docker-buildx-plugin docker-compose-plugin

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?

I found my flaw. Syntax changed from “docker-compose” to “docker compose” – all works after that, thank you for the help!

My pleasure, glad you got it all fixed!