I am diving into the world of self hosting by setting up a small server on my raspberry pi4. I already have tailscale, pihole, and navidrome setup in containers on my pi, I now want to add lidarr or some alternative to work with navidrome. When I tried to build the lidarr docker container it says “no matching manifest for Linux/arm/v8 in the manifest list entries” I am trying to pull from the Linux server docker image which says it supports arm64 on their page but so far I have not gotten it to work. Any and all suggestions are welcome. Thank you.
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.
aislopmukbang@sh.itjust.works 7 months ago
mrcheeseman@lemmy.world 7 months ago
Oh I didn’t realize it could use two different architectures, I can see how that might mess it up, I’ll look in to that thank you.