20 lines
795 B
YAML
20 lines
795 B
YAML
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
|