Skip to content

Fix containers name in docker compose files. #6105

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions src/docker-compose/docker-compose-kafka.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: '3'

# Configuration environment variables:
# - DATAFLOW_VERSION and SKIPPER_VERSION specify what DataFlow and Skipper image versions to use.
# - STREAM_APPS_URI and TASK_APPS_URI are used to specify what Stream and Task applications to pre-register.
Expand All @@ -23,7 +21,7 @@ services:

kafka-broker:
image: confluentinc/cp-kafka:5.5.2
container_name: dataflow-kafka
container_name: kafka-broker
expose:
- "9092"
environment:
Expand All @@ -41,7 +39,7 @@ services:

zookeeper:
image: confluentinc/cp-zookeeper:5.5.2
container_name: dataflow-kafka-zookeeper
container_name: zookeeper
expose:
- "2181"
environment:
Expand Down
4 changes: 1 addition & 3 deletions src/docker-compose/docker-compose-postgres.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
version: '3'

# Reconfigures the default docker-compose.yml to replace MariaDB by Postgres
# Usage: docker-compose -f ./docker-compose.yml -f ./docker-compose-postgres.yml up
services:

postgres:
image: postgres:14
command: postgres -c 'max_connections=300'
container_name: dataflow-postgres
container_name: postgres
restart: always
environment:
LANG: en_US.utf8
Expand Down