Skip to content

Commit

Permalink
Update docker-compose example (#309)
Browse files Browse the repository at this point in the history
  • Loading branch information
ismailsimsek committed Apr 24, 2024
1 parent 2368530 commit b26703c
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions examples/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "3"
version: "3.7"

services:
debezium-iceberg:
Expand All @@ -17,10 +17,10 @@ services:
- AWS_ACCESS_KEY_ID=admin
- AWS_SECRET_ACCESS_KEY=password
- AWS_REGION=us-east-1
links:
- jdbccatalog
- minio
- postgresqlsourcedb
# links:
# - jdbccatalog
# - minio
# - postgresqlsourcedb
postgresqlsourcedb:
image: debezium/example-postgres:2.5
container_name: postgresql-source-db
Expand Down Expand Up @@ -74,8 +74,9 @@ services:
/bin/sh -c "
until (/usr/bin/mc config host add minio http://minio:9000 admin password) do echo '...waiting...' && sleep 1; done;
/usr/bin/mc mb --ignore-existing minio/warehouse;
/usr/bin/mc policy set public minio/warehouse;
/usr/bin/mc anonymous set public minio/warehouse;
exit 0;
"
networks:
iceberg_net:
iceberg_net:
name: icebergnet

0 comments on commit b26703c

Please sign in to comment.