From 6463c6b3d10bd2804d7f9fceceaea6190e222619 Mon Sep 17 00:00:00 2001 From: Gronod Date: Fri, 15 May 2026 20:41:46 +0100 Subject: [PATCH] docs: add docker-compose.yaml with sample configuration --- docker-compose.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 docker-compose.yaml diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..f352256 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,17 @@ +version: "3" +services: + sofarr: + image: docker.i3omb.com/sofarr:latest + container_name: sofarr + restart: unless-stopped + ports: + - "3001:3001" + environment: + - PORT=3001 + - EMBY_URL=https://emby.example.com + - EMBY_API_KEY=your-emby-api-key + - SONARR_INSTANCES=[{"name":"main","url":"https://sonarr.example.com","apiKey":"your-sonarr-api-key"}] + - RADARR_INSTANCES=[{"name":"main","url":"https://radarr.example.com","apiKey":"your-radarr-api-key"}] + - SABNZBD_INSTANCES=[{"name":"main","url":"https://sabnzbd.example.com","apiKey":"your-sabnzbd-api-key"}] + - QBITTORRENT_INSTANCES=[{"name":"main","url":"https://qbittorrent.example.com","username":"admin","password":"your-password"}] + - LOG_LEVEL=info