Skip to content

Commit

Permalink
Update docker-compose.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
wangxj3 authored Oct 23, 2024
1 parent 1da1118 commit 0a0e244
Showing 1 changed file with 0 additions and 63 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,68 +33,5 @@ services:
retries: 120
networks:
- e2e
deploy:
mode: replicated
replicas: 1

dolphinscheduler-api:
image: apache/dolphinscheduler-standalone-server:ci
environment:
MASTER_MAX_CPU_LOAD_AVG: 100
WORKER_TENANT_AUTO_CREATE: 'true'
ports:
- "12345:12345"
depends_on:
dolphinscheduler-zookeeper:
condition: service_healthy
networks:
- e2e
healthcheck:
test: [ "CMD", "curl", "http://localhost:12345/dolphinscheduler/actuator/health" ]
interval: 5s
timeout: 5s
retries: 120
command: [ "/bin/bash", "/opt/dolphinscheduler/api-server/bin/start.sh" ]

dolphinscheduler-master:
image: apache/dolphinscheduler-standalone-server:ci
environment:
MASTER_MAX_CPU_LOAD_AVG: 100
WORKER_TENANT_AUTO_CREATE: 'true'
ports:
- "5678:5678"
- "5679:5679"
depends_on:
dolphinscheduler-zookeeper:
condition: service_healthy
networks:
- e2e
healthcheck:
test: [ "CMD", "curl", "http://localhost:5679/actuator/health" ]
interval: 5s
timeout: 5s
retries: 120
command: [ "/bin/bash", "/opt/dolphinscheduler/master-server/bin/start.sh" ]

dolphinscheduler-worker:
image: apache/dolphinscheduler-standalone-server:ci
environment:
MASTER_MAX_CPU_LOAD_AVG: 100
WORKER_TENANT_AUTO_CREATE: 'true'
ports:
- "1234:1234"
- "1235:1235"
depends_on:
dolphinscheduler-zookeeper:
condition: service_healthy
networks:
- e2e
healthcheck:
test: [ "CMD", "curl", "http://localhost:1235/actuator/health" ]
interval: 5s
timeout: 5s
retries: 120
command: [ "/bin/bash", "/opt/dolphinscheduler/worker-server/bin/start.sh" ]

networks:
e2e:

0 comments on commit 0a0e244

Please sign in to comment.