Skip to content

Commit

Permalink
Adapt playground to M1 mac #3488
Browse files Browse the repository at this point in the history
  • Loading branch information
vdesabou committed Mar 7, 2023
1 parent a5510f9 commit 0b20ab9
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ services:
postgres:
build:
context: ../../connect/connect-debezium-postgresql-source/mtls
args:
POSTGRES_IMAGE: ${POSTGRES_IMAGE}
hostname: postgres
container_name: postgres
environment:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ services:
postgres:
build:
context: ../../connect/connect-debezium-postgresql-source/ssl
args:
POSTGRES_IMAGE: ${POSTGRES_IMAGE}
hostname: postgres
container_name: postgres
environment:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '3.5'
services:

postgres:
image: debezium/postgres:15-alpine
image: ${POSTGRES_IMAGE}
hostname: postgres
container_name: postgres
environment:
Expand Down
3 changes: 2 additions & 1 deletion connect/connect-debezium-postgresql-source/mtls/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM debezium/postgres:15-alpine
ARG POSTGRES_IMAGE
FROM ${POSTGRES_IMAGE}
LABEL "Product"="PostgreSQL (MTLS enabled)"
COPY server.key /var/lib/postgresql/server.key
COPY server.crt /var/lib/postgresql/server.crt
Expand Down
3 changes: 2 additions & 1 deletion connect/connect-debezium-postgresql-source/ssl/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM debezium/postgres:15-alpine
ARG POSTGRES_IMAGE
FROM ${POSTGRES_IMAGE}
LABEL "Product"="PostgreSQL (SSL enabled)"
COPY server.key /var/lib/postgresql/server.key
COPY server.crt /var/lib/postgresql/server.crt
Expand Down

0 comments on commit 0b20ab9

Please sign in to comment.