feat: node 版本更新 (#1039)

This commit is contained in:
zhengkunwang
2024-03-05 16:39:02 +08:00
committed by GitHub
parent 096f7ee4e3
commit f165a6b5a5
10 changed files with 0 additions and 30 deletions
+19
View File
@@ -0,0 +1,19 @@
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}
restart: always
networks:
1panel-network:
external: true