Skip to content

Commit

Permalink
Fixed Docker Compose unquoted ports
Browse files Browse the repository at this point in the history
Signed-off-by: Alberto Codutti <alberto.codutti@eurotech.com>
  • Loading branch information
Coduz committed Jul 7, 2022
1 parent 7b89ee9 commit af92470
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions deployment/docker/compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ services:
db:
image: kapua/kapua-sql:${IMAGE_VERSION}
ports:
- 3306:3306
- "3306:3306"
es:
image: docker.elastic.co/elasticsearch/elasticsearch:7.8.1
ports:
- 9200:9200
- 9300:9300
- "9200:9200"
- "9300:9300"
environment:
- cluster.name=kapua-datastore
- discovery.type=single-node
Expand All @@ -19,15 +19,15 @@ services:
events-broker:
image: kapua/kapua-events-broker:${IMAGE_VERSION}
ports:
- 5672:5672
- "5672:5672"
broker:
image: kapua/kapua-broker:${IMAGE_VERSION}
expose:
- 1893
ports:
- 1883:1883
- 8883:8883
- 61614:61614
- "1883:1883"
- "8883:8883"
- "61614:61614"
depends_on:
- db
- es
Expand All @@ -45,8 +45,8 @@ services:
kapua-console:
image: kapua/kapua-console:${IMAGE_VERSION}
ports:
- 8080:8080
- 8443:8443
- "8080:8080"
- "8443:8443"
depends_on:
- broker
- db
Expand Down Expand Up @@ -76,8 +76,8 @@ services:
kapua-api:
image: kapua/kapua-api:${IMAGE_VERSION}
ports:
- 8081:8080
- 8444:8443
- "8081:8080"
- "8444:8443"
depends_on:
- broker
- db
Expand Down

0 comments on commit af92470

Please sign in to comment.