Synced apps from source repository via GitHub Actions

This commit is contained in:
QYG2297248353
2025-04-29 06:30:45 +00:00
parent ef348e9d58
commit 9c537f985d
18 changed files with 609 additions and 12 deletions
+26
View File
@@ -0,0 +1,26 @@
networks:
1panel-network:
external: true
services:
nacos:
container_name: nacos-derby
env_file:
- ./envs/global.env
- .env
environment:
- MODE=standalone
- NACOS_CONSOLE_PORT=${PANEL_APP_PORT_HTTP:-8080}
- NACOS_SERVER_PORT=${PANEL_APP_PORT_API:-8848}
- NACOS_AUTH_ENABLE=true
image: nacos/nacos-server:v3.0.0
labels:
createdBy: Apps
network_mode: ${NETWORK_MODE}
ports:
- ${PANEL_APP_PORT_HTTP:-8080}:${PANEL_APP_PORT_HTTP:-8080}
- ${PANEL_APP_PORT_API:-8848}:${PANEL_APP_PORT_API:-8080}
- ${PANEL_APP_PORT_GRPC}:9848
restart: always
volumes:
- ${NACOS_ROOT_PATH}/logs:/home/nacos/logs
- ${NACOS_ROOT_PATH}/data:/home/nacos/data