Initial fresh commit

This commit is contained in:
2025-09-26 10:57:00 +00:00
commit 580ec19322
4 changed files with 239 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
services:
lidarr:
image: lscr.io/linuxserver/lidarr:latest
container_name: lidarr
environment:
- PUID=1000
- PGID=1000
- TZ=${TZ}
volumes:
- /path/to/lidarr/config:/config
- /path/to/data/:/data/
- path/to/downloads/:/downloads
ports:
- 8686:8686
networks:
example_network:
ipv4_address: 172.18.0.1
restart: unless-stopped
mbid-poller:
image: gitea.kansaigaijin.com/KansaiGaijin
container_name: mbid-poller
environment:
# Common: The URL for your Lidarr instance
- LIDARR_BASE=http://lidarr:8686
- MBID_API_URL= # OPTION 1: API URL (Current default, highest priority)
- MBID_JSON_FILE=/config/ids.json # OPTION 2: JSON File (To use, comment out MBID_API_URL and uncomment this lines)
- MBID_URL=https://musicbrainz.org/work/69755ab1-409e-3ad7-902f-3a839042799c # OPTION 3: Single ID/URL (To use, comment out the API URL and the JSON File lines)
volumes:
- ./ids.json:/config/ids.json:ro
networks:
example_network: # Same network as Lidarr
ipv4_address: 172.18.0.2
restart: "no" # Run once
command: ["/app/poller.pl"]
networks:
example_network:
external: true