mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-27 08:01:06 +00:00
33 lines
755 B
YAML
33 lines
755 B
YAML
services:
|
|
isrvd:
|
|
image: "rehiy/isrvd:slim@sha256:80ab83c49990d451782d3c317332d2a9ef8aa68fac47a4081855b5db99ca5d3a"
|
|
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
|