Initial commit
This commit is contained in:
@@ -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=
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user