commit 523a85731fdf9b696b8e6ffb7fac269e28f1b174 Author: mattspeer Date: Wed Dec 3 20:51:52 2025 -0600 Add docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..8b0e273 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,16 @@ +services: + listenarr: + image: ghcr.io/therobbiedavis/listenarr:canary + user: "1001:1001" ## Replace with your desired UID and GID + ports: + - "5000:5000" + environment: + - LISTENARR_PUBLIC_URL=https://listenarr.speerfam.com ## OPTIONAL: Used by Discord Bot + volumes: + - /srv/docker/listenarr/config:/app/config + restart: unless-stopped + +# For Docker Hub, replace the image with docker.io/therobbiedavis/listenarr:canary + +volumes: + listenarr_data: \ No newline at end of file