diff --git a/lsio/prowlarr/docker-compose.yaml b/lsio/prowlarr/docker-compose.yaml new file mode 100644 index 0000000..32448ec --- /dev/null +++ b/lsio/prowlarr/docker-compose.yaml @@ -0,0 +1,23 @@ +# [{{ project_name_short|capitalize }}](https://url.com/) short description goes +# here. + +--- +version: "2.1" +services: + name: + image: ghcr.io/linuxserver/name + container_name: name + environment: + # for GroupID + - PUID=${PUID:-1024} + # for UserID + - PGID=${PGID:-100} + # Specify a timezone to use for example Europe/Amsterdam + - TZ=${TZ:-Europe/Amsterdam} + volumes: + # Configuration files. + - ${BASEDIR:-/volume1/docker}/name/config:/config + ports: + # Application WebUI + - 80:80 + restart: unless-stopped diff --git a/lsio/prowlarr/docker-run.sh b/lsio/prowlarr/docker-run.sh new file mode 100644 index 0000000..f70e41a --- /dev/null +++ b/lsio/prowlarr/docker-run.sh @@ -0,0 +1,13 @@ +# [{{ project_name_short|capitalize }}](https://url.com/) short description goes +# here. + +source ./.env +docker run -d \ + --name=name \ + -e PUID=${PUID:-1024} `# for GroupID` \ + -e PGID=${PGID:-100} `# for UserID` \ + -e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \ + -p 80:80 `# Application WebUI` \ + -v ${BASEDIR:-/volume1/docker}/name/config:/config `# Configuration files.` \ + --restart unless-stopped \ + ghcr.io/linuxserver/name diff --git a/lsio/prowlarr/run-once.sh b/lsio/prowlarr/run-once.sh new file mode 100644 index 0000000..ee35f5f --- /dev/null +++ b/lsio/prowlarr/run-once.sh @@ -0,0 +1,3 @@ +ln -s ../docker-env.cfg ./.env +. ./.env +mkdir -p ${BASEDIR:-/volume1/docker}/name/config