Synced apps from source repository via GitHub Actions

This commit is contained in:
QYG2297248353
2024-12-04 03:08:24 +00:00
parent c472f6b912
commit e8d6cc738d
1394 changed files with 42558 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
networks:
1panel-network:
external: true
services:
sentinel-dashboard:
container_name: sentinel
entrypoint:
- java
- -Djava.security.egd=file:/dev/./urandom
- -Dserver.port=8858
- -Dcsp.sentinel.api.port=8719
- -Dcsp.sentinel.dashboard.server=localhost:8858
- -Dproject.name=sentinel-dashboard
- -Dsentinel.dashboard.auth.username=${SENTINEL_DASHBOARD_AUTH_USERNAME}
- -Dsentinel.dashboard.auth.password=${SENTINEL_DASHBOARD_AUTH_PASSWORD}
- -Dfeign.sentinel.enabled=${SENTINEL_DASHBOARD_FEIGN_ENABLED}
- -jar
- app.jar
image: bladex/sentinel-dashboard:1.8.8
labels:
createdBy: Apps
network_mode: ${NETWORK_MODE}
ports:
- ${PANEL_APP_PORT_HTTP}:8858
- ${COMMUNICATION_PORT}:8719
restart: always