Files
appstore/apps/isrvd/latest/docker-compose.yml
T

33 lines
683 B
YAML

services:
isrvd:
image: "rehiy/isrvd:slim"
container_name: ${CONTAINER_NAME}
entrypoint:
- /data/conf/app-entrypoint.sh
ports:
- "${PANEL_APP_PORT_HTTP}:8080"
volumes:
- "${ISRVD_DATA_ABS}:/data"
- "${ISRVD_DATA_ABS}:${ISRVD_DATA_ABS}"
- "/var/run/docker.sock:/var/run/docker.sock"
healthcheck:
test:
- CMD
- wget
- --spider
- -q
- http://127.0.0.1:8080/
interval: 10s
timeout: 5s
retries: 6
start_period: 15s
labels:
createdBy: Apps
networks:
- 1panel-network
restart: unless-stopped
networks:
1panel-network:
external: true