Skip to content

Commit

Permalink
DBZ-8206 Changed server config volume path
Browse files Browse the repository at this point in the history
  • Loading branch information
jcechace authored and jpechane committed Sep 12, 2024
1 parent fd77c48 commit c94b3b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ services:
ports:
- 8080:8080
volumes:
- ./config-mysql:/debezium/conf
# prior to Debezium 3.0 the container path should be /debezium/conf
- ./config-mysql:/debezium/config

pubsub_tools:
build: .
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ services:
- "8080:8080"
volumes:
- /your/path/to/service-account.json:/tmp/credentials/service-account.json
- ./config-postgres:/debezium/conf
- ./config-postgres:/debezium/config
debezium-server-mongodb:
image: quay.io/debezium/server:${DEBEZIUM_VERSION}
container_name: debezium-server-mongodb
Expand All @@ -44,7 +44,7 @@ services:
- "8080:8080"
volumes:
- /your/path/to/service-account.json:/tmp/credentials/service-account.json
- ./config-mongodb:/debezium/conf
- ./config-mongodb:/debezium/config
debezium-server-mysql:
image: quay.io/debezium/server:${DEBEZIUM_VERSION}
container_name: debezium-server-mysql
Expand All @@ -54,4 +54,4 @@ services:
- "8080:8080"
volumes:
- /your/path/to/service-account.json:/tmp/credentials/service-account.json
- ./config-mysql:/debezium/conf
- ./config-mysql:/debezium/config

0 comments on commit c94b3b1

Please sign in to comment.