mirror of
https://github.com/pooneyy/1Panel-Appstore.git
synced 2026-03-20 21:01:04 +08:00
24 lines
634 B
YAML
24 lines
634 B
YAML
networks:
|
|
1panel-network:
|
|
external: true
|
|
|
|
services:
|
|
nodepassdash:
|
|
image: ghcr.io/nodepassproject/nodepassdash:2.2.1
|
|
container_name: ${CONTAINER_NAME}
|
|
labels:
|
|
createdBy: "Apps"
|
|
restart: always
|
|
network_mode: ${NETWORK_MODE}
|
|
ports:
|
|
- ${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP}
|
|
env_file:
|
|
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
|
|
- ${ENV_FILE:-/etc/1panel/envs/default.env}
|
|
volumes:
|
|
- ${NODEPASSDASH_ROOT_PATH}/logs:/app/logs
|
|
- ${NODEPASSDASH_ROOT_PATH}/public:/app/public
|
|
environment:
|
|
- TZ=Asia/Shanghai
|
|
- PORT=${PANEL_APP_PORT_HTTP}
|