Comment on Raspberry pi lidarr docker container
ohshit604@sh.itjust.works 2 days ago
services: lidarr: container_name: lidarr hostname: lidarr ### Use custom docker network #networks: # - CustomNetworkName ports: - 8686:8686 image: lscr.io/linuxserver/lidarr:arm64v8-latest restart: unless-stopped volumes: - /path/to/lidarr/config:/config - /path/to/music:/music #optional - /path/to/downloads:/downloads #optional environment: - PGID=1000 - PUID=1000 healthcheck: test: curl --fail localhost:8686 || exit 1 interval: 60s retries: 5 start_period: 300s timeout: 2s
This should work for you, just change the volume mounts so that they associate with your setup.
mrcheeseman@lemmy.world 2 days ago
I got the same error even when using the arm64 tag
ohshit604@sh.itjust.works 2 days ago
Something else must be wrong then because I just copied and pasted that onto my raspberry pi and was able to start the container without issue.
mrcheeseman@lemmy.world 2 days ago
I just copy pasted yours into mine and I still got the same error.