File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed
Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -75,3 +75,20 @@ container:boot:taurus:
7575 - docker compose logs taurus -f &
7676 - support/grpc_check_health --host docker:8082 --service liveness --retries 20
7777 - support/grpc_check_health --host docker:8082 --service readiness --retries 20
78+
79+ container:boot:draco :
80+ extends :
81+ - .container:boot
82+ needs :
83+ - container:draco
84+ parallel :
85+ matrix :
86+ - DRACO_VARIANT :
87+ - rest
88+ script :
89+ - bundle install
90+ - docker compose up nats -d
91+ - docker compose up draco -d
92+ - docker compose logs draco -f &
93+ - support/grpc_check_health --host docker:8083 --service liveness --retries 20
94+ - support/grpc_check_health --host docker:8083 --service readiness --retries 20
Original file line number Diff line number Diff line change @@ -75,5 +75,17 @@ services:
7575 ports :
7676 - " 8082:8082"
7777
78+ draco :
79+ image : ghcr.io/code0-tech/reticulum/ci-builds/draco:${CI_PIPELINE_ID}-${DRACO_VARIANT}
80+ networks :
81+ - boot
82+ environment :
83+ NATS_URL : nats://nats:4222
84+ WITH_HEALTH_SERVICE : " true"
85+ GRPC_HOST : 0.0.0.0
86+ GRPC_PORT : " 8083"
87+ ports :
88+ - " 8083:8083"
89+
7890networks :
7991 boot :
You can’t perform that action at this time.
0 commit comments