Skip to content

Commit 9c5d992

Browse files
authored
fix compose file
1. fixed port binding to use invalid syntax `8080:8080:8080` which docker-compose silently ignores (?) 2. removed version header, which isn't required since 1.28 - see compose-spec.io
1 parent 64df957 commit 9c5d992

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

reactive-jhipster/docker-compose/docker-compose.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: "3.8"
21
services:
32
gateway:
43
image: gateway
@@ -16,7 +15,7 @@ services:
1615
- JHIPSTER_SLEEP=30
1716
- JHIPSTER_REGISTRY_PASSWORD=admin
1817
ports:
19-
- "8080:8080:8080"
18+
- "8080:8080"
2019
gateway-postgresql:
2120
image: postgres:13.2
2221
environment:

0 commit comments

Comments
 (0)