Skip to content

Commit

Permalink
DIV-8204 | Hyphenate service names in release and e2e docker compose …
Browse files Browse the repository at this point in the history
…files
  • Loading branch information
egov-joy committed Feb 25, 2022
1 parent 788721d commit 4c9dc8e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
22 changes: 11 additions & 11 deletions docker-compose-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ services:
ports:
- "8123:8123"
- "9000:9000"
vaccination_api:
vaccination-api:
image: divoc/vaccination_api:1.23.3-generic
environment:
REGISTRY_URL: "http://registry:8081"
Expand All @@ -115,7 +115,7 @@ services:
depends_on:
- kafka
- keycloak
registration_api:
registration-api:
image: divoc/registration_api:1.23.3-generic
ports:
- "8002:8002"
Expand All @@ -130,7 +130,7 @@ services:
depends_on:
- kafka
- keycloak
portal_api:
portal-api:
image: divoc/portal_api:1.23.3-generic
ports:
- "8001:8001"
Expand All @@ -144,14 +144,14 @@ services:
depends_on:
- kafka
- keycloak
analytics_feed:
analytics-feed:
image: divoc/analytics_feed:1.23.3-generic
environment:
CLICK_HOUSE_URL: tcp://clickhouse-server:9000?debug=true
KAFKA_BOOTSTRAP_SERVERS: kafka:9092
depends_on:
- clickhouse-server
certificate_processor:
certificate-processor:
image: divoc/certificate_processor:1.23.3-generic
environment:
KAFKA_BOOTSTRAP_SERVERS: kafka:9092
Expand All @@ -160,7 +160,7 @@ services:
ADMIN_API_CLIENT_SECRET: "$ADMIN_API_CLIENT_SECRET"
depends_on:
- registry
certificate_signer:
certificate-signer:
image: divoc/certificate_signer:1.23.3-generic
environment:
KAFKA_BOOTSTRAP_SERVERS: kafka:9092
Expand All @@ -174,9 +174,9 @@ services:
ports:
- "81:80"
depends_on:
- vaccination_api
- portal_api
- registration_api
- vaccination-api
- portal-api
- registration-api
notification-service:
image: divoc/notification-service:1.23.3-generic
ports:
Expand All @@ -188,14 +188,14 @@ services:
SENDER_PASSWORD: xxxx
depends_on:
- kafka
digilocker_support_api:
digilocker-support-api:
image: divoc/digilocker_support_api:1.23.3-generic
environment:
KAFKA_BOOTSTRAP_SERVERS: kafka:9092
REGISTRY_URL: "http://registry:8081"
DIGILOCKER_HMAC_AUTHKEY: "UPDATE_KEY_GIVEN_IN_DIGILOCKER"
KEYCLOAK_URL: "http://keycloak:8080/auth"
certificate_api:
certificate-api:
image: divoc/certificate_api:1.23.3-generic
ports:
- "4321:4321"
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.e2e.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
version: "2.4"

services:
analytics_feed:
analytics-feed:
entrypoint: /bin/true
notification-service:
entrypoint: /bin/true
clickhouse-server:
entrypoint: /bin/true
portal_api:
portal-api:
environment:
ADMIN_API_CLIENT_SECRET: "$ADMIN_API_CLIENT_SECRET"
etcd:
Expand All @@ -24,15 +24,15 @@ services:
timeout: 10s
retries: 5
start_period: 1m
certificate_processor:
certificate-processor:
environment:
ADMIN_API_CLIENT_SECRET: "$ADMIN_API_CLIENT_SECRET"
e2e_test:
build:
context: ./e2e
container_name: e2e_test
depends_on:
vaccination_api:
vaccination-api:
condition: service_started
keycloak:
condition: service_healthy
Expand Down

0 comments on commit 4c9dc8e

Please sign in to comment.