Skip to content

Commit 8bcb29a

Browse files
authored
Merge pull request #37 from WhiteBite/patch-1
Fix: Unquoted port mapping not recommended
2 parents 4c7fb61 + 2b6a8a1 commit 8bcb29a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker-compose.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ services:
1717
links:
1818
- postgres
1919
ports:
20-
- 8000:9292
20+
- "8000:9292"
2121
restart: always
2222
environment:
2323
PACT_BROKER_BASIC_AUTH_USERNAME: pact_workshop
@@ -29,4 +29,4 @@ services:
2929
PACT_BROKER_DATABASE_CONNECT_MAX_RETRIES: "10"
3030
PACT_BROKER_PUBLIC_HEARTBEAT: "true"
3131
PACT_BROKER_WEBHOOK_SCHEME_WHITELIST: http
32-
PACT_BROKER_WEBHOOK_HOST_WHITELIST: host.docker.internal
32+
PACT_BROKER_WEBHOOK_HOST_WHITELIST: host.docker.internal

0 commit comments

Comments
 (0)