13 lines
536 B
YAML
13 lines
536 B
YAML
services:
|
|
# WebsiteShot
|
|
websiteshot:
|
|
container_name: ${WEBSITESHOT_CONTAINER_NAME:-WebsiteShot}
|
|
image: flowko1/website-shot:${WEBSITESHOT_TAG:-latest}
|
|
restart: ${RESTART:-unless-stopped}
|
|
healthcheck:
|
|
test: wget --no-verbose --tries=1 --spider http://localhost:3000/
|
|
ports:
|
|
- ${WEBSITESHOT_PORT:-3000}:3000
|
|
volumes:
|
|
- /${SYNOLOGY_VOLUME:-volume1}/docker/${STACK_NAME:-websiteshot}/${WEBSITESHOT_CONTAINER_NAME:-WebsiteShot}/usr/src/website-shot/screenshots:/usr/src/website-shot/screenshots
|