Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions docker-compose-macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,14 @@ services:
container_name: devicehub-processor
env_file:
- scripts/variables.env
command: stf processor --name processor --connect-app-dealer tcp://devicehub-triproxy-app:7160 --connect-dev-dealer tcp://devicehub-triproxy-dev:7260
command: >
stf processor --name processor
--connect-app-dealer tcp://devicehub-triproxy-app:7160
--connect-dev-dealer tcp://devicehub-triproxy-dev:7260
--connect-push tcp://devicehub-triproxy-app:7170
--connect-push-dev tcp://devicehub-triproxy-dev:7270
--connect-sub tcp://devicehub-triproxy-app:7150
--connect-sub-dev tcp://devicehub-triproxy-dev:7250
depends_on:
devicehub-migrate:
condition: service_completed_successfully
Expand Down Expand Up @@ -233,7 +240,12 @@ services:
container_name: devicehub-api-groups-engine
env_file:
- scripts/variables.env
command: stf groups-engine --connect-push tcp://devicehub-triproxy-app:7170 --connect-push-dev tcp://devicehub-triproxy-dev:7270
command: >
stf groups-engine
--connect-push tcp://devicehub-triproxy-app:7170
--connect-push-dev tcp://devicehub-triproxy-dev:7270
--connect-sub tcp://devicehub-triproxy-app:7150
--connect-sub-dev tcp://devicehub-triproxy-dev:7250
depends_on:
devicehub-migrate:
condition: service_completed_successfully
Expand Down