mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2026-06-16 01:02:14 +08:00
24 lines
600 B
YAML
24 lines
600 B
YAML
networks:
|
|
1panel-network:
|
|
external: true
|
|
|
|
services:
|
|
lucky:
|
|
image: gdy666/lucky:2.27.2
|
|
container_name: ${CONTAINER_NAME}
|
|
labels:
|
|
createdBy: "Apps"
|
|
restart: always
|
|
network_mode: ${NETWORK_MODE:-host}
|
|
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:
|
|
- ./run/start.sh:/goodluck/start.sh:ro
|
|
- ${LUCKY_ROOT_PATH}/data:/goodluck
|
|
environment:
|
|
- TZ=Asia/Shanghai
|
|
entrypoint: [ "/goodluck/start.sh" ]
|