Skip to content

Commit

Permalink
fix: fix bitnami/kafka container version (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lancetnik authored Aug 4, 2023
1 parent 589e344 commit e2c58c4
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,8 @@ jobs:
fail-fast: false

services:
rabbitmq:
image: rabbitmq:alpine
ports:
- 5672:5672

kafka:
image: bitnami/kafka
image: bitnami/kafka:3.5.0
ports:
- 9092:9092
env:
Expand All @@ -38,6 +33,11 @@ jobs:
KAFKA_CFG_CONTROLLER_QUORUM_VOTERS: "1@kafka:9093"
ALLOW_PLAINTEXT_LISTENER: "true"

rabbitmq:
image: rabbitmq:alpine
ports:
- 5672:5672

sqs:
image: softwaremill/elasticmq-native
ports:
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ services:
- 8222:8222 # management

kafka:
image: bitnami/kafka
image: bitnami/kafka:3.5.0
ports:
- 9092:9092
environment:
Expand Down
2 changes: 1 addition & 1 deletion docs/includes/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ services:
- 8222:8222 # management

kafka:
image: bitnami/kafka
image: bitnami/kafka:3.5.0
ports:
- 9092:9092
environment:
Expand Down
2 changes: 1 addition & 1 deletion propan/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from unittest.mock import Mock

__version__ = "0.1.5.15"
__version__ = "0.1.5.16"


INSTALL_MESSAGE = (
Expand Down
2 changes: 1 addition & 1 deletion propan/cli/startproject/async_app/kafka.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def _create_project_dir(dirname: Path) -> Path:
"",
"services:",
" kafka:",
" image: bitnami/kafka",
" image: bitnami/kafka:3.5.0",
" ports:",
" - 9092:9092",
" environment:",
Expand Down

0 comments on commit e2c58c4

Please sign in to comment.