mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-10 21:16:55 +08:00
30 lines
867 B
YAML
30 lines
867 B
YAML
version: "3.8"
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true
|
|
|
|
services:
|
|
"sentinel-dashboard":
|
|
image: bladex/sentinel-dashboard:1.8.7
|
|
container_name: ${CONTAINER_NAME}
|
|
labels:
|
|
createdBy: "Apps"
|
|
restart: always
|
|
network_mode: ${NETWORK_MODE}
|
|
ports:
|
|
- ${PANEL_APP_PORT_HTTP}:8858
|
|
- ${COMMUNICATION_PORT}:8719
|
|
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"
|