mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-11 03:36:55 +08:00
25 lines
561 B
YAML
25 lines
561 B
YAML
version: '3'
|
|
services:
|
|
node:
|
|
image: node:${NODE_VERSION}
|
|
container_name: ${CONTAINER_NAME}
|
|
working_dir: /app
|
|
volumes:
|
|
- ${CODE_DIR}:/app
|
|
- ./run.sh:/run.sh
|
|
- ./.env:/.env
|
|
command: bash /run.sh
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- ${HOST_IP}:${PANEL_APP_PORT_HTTP}:${NODE_APP_PORT}
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "curl -f http://localhost:${NODE_APP_PORT} || exit 1"]
|
|
interval: 30s
|
|
timeout: 5s
|
|
retries: 20
|
|
restart: always
|
|
networks:
|
|
1panel-network:
|
|
external: true
|