From ede6cddfedea322b5ebf7b986059354c81de6c54 Mon Sep 17 00:00:00 2001 From: Nathan Falvey Date: Tue, 3 Mar 2026 01:00:28 +0000 Subject: [PATCH] feat(lidatube): Add docker-compose configuration file --- templates/lidatube/docker-compose.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/templates/lidatube/docker-compose.yml b/templates/lidatube/docker-compose.yml index e69de29..048efd5 100644 --- a/templates/lidatube/docker-compose.yml +++ b/templates/lidatube/docker-compose.yml @@ -0,0 +1,23 @@ +services: + lidatube: + image: thewicklowwolf/lidatube:latest + container_name: lidatube + volumes: + # Host path for application configuration. Change this to your desired path. + - ./config/lidatube:/lidatube/config + # Host path for music downloads. Change this to your desired path. + - ./data/lidatube/downloads:/lidatube/downloads + - /etc/localtime:/etc/localtime:ro + ports: + - 9274:5000 + environment: + # Set PUID and PGID to match your host user's UID and GID for proper file permissions. + # You can find these by running 'id ' on your host machine. + - PUID=1000 + - PGID=1000 + - sync_schedule=19,20,21,22,23,0,1,2,3,4,5 + - attempt_lidarr_import=False + - thread_limit=1 + - sleep_interval=1 + + restart: unless-stopped \ No newline at end of file