Initial commit

This commit is contained in:
2023-09-09 14:53:02 +02:00
commit e0ee091a7b
33 changed files with 788 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
# Uncomment and change the following variables if you want to use them.
#RESTART=unless-stopped
#SYNOLOGY_VOLUME=volume1
#STACK_NAME=podgrab
#UID=1024
#GID=101
#TZ=Europe/Amsterdam
#PODGRAB_CONTAINER_NAME=Podgrab
#PODGRAB_TAG=latest
#PODGRAB_PORT=8080
#PODGRAB_CHECK_FREQUENCY=30
#PODGRAB_PASSWORD=
+19
View File
@@ -0,0 +1,19 @@
services:
# Podgrab
podgrab:
container_name: ${PODGRAB_CONTAINER_NAME:-Podgrab}
hostname: podgrab
image: akhilrex/podgrab:${PODGRAB_TAG:-latest}
user: ${UID:-1024}:${GID:-101}
restart: ${RESTART:-unless-stopped}
healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:${PODGRAB_PORT:-8080}/
environment:
CHECK_FREQUENCY: ${PODGRAB_CHECK_FREQUENCY:-30}
PASSWORD: ${PODGRAB_PASSWORD:-}
PORT: ${PODGRAB_PORT:-8080}
ports:
- ${PODGRAB_PORT:-8080}:${PODGRAB_PORT:-8080}
volumes:
- /${SYNOLOGY_VOLUME:-volume1}/docker/${STACK_NAME:-podgrab}/${PODGRAB_CONTAINER_NAME:-Podgrab}/config:/config
- /${SYNOLOGY_VOLUME:-volume1}/docker/${STACK_NAME:-podgrab}/${PODGRAB_CONTAINER_NAME:-Podgrab}/assets:/assets