Skip to content

Commit

Permalink
Fixed integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mantzas committed Nov 18, 2023
1 parent cb59354 commit 33a9ffe
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
version: "3.8"
services:
zookeeper:
image: 'bitnami/zookeeper:latest'
image: bitnami/zookeeper:latest
ports:
- '2181:2181'
- "2181:2181"
environment:
- ALLOW_ANONYMOUS_LOGIN=yes
kafka:
image: 'bitnami/kafka:2'
image: bitnami/kafka:2
ports:
- '9092:9092'
- '9093:9093'
- "9092:9092"
- "9093:9093"
environment:
- KAFKA_CFG_ZOOKEEPER_CONNECT=zookeeper:2181
- ALLOW_PLAINTEXT_LISTENER=yes
Expand All @@ -21,41 +21,41 @@ services:
depends_on:
- zookeeper
rabbitmq:
image: docker.io/bitnami/rabbitmq:3.9
image: bitnami/rabbitmq:latest
ports:
- '4369:4369'
- '5551:5551'
- '5552:5552'
- '5672:5672'
- '25672:25672'
- '15672:15672'
- "4369:4369"
- "5551:5551"
- "5552:5552"
- "5672:5672"
- "25672:25672"
- "15672:15672"
environment:
- RABBITMQ_SECURE_PASSWORD=yes
volumes:
- 'rabbitmq_data:/bitnami/rabbitmq/mnesia'
- "rabbitmq_data:/bitnami/rabbitmq/mnesia"
mysql:
image: mysql:8
restart: always
environment:
MYSQL_DATABASE: 'patrondb'
MYSQL_USER: 'patron'
MYSQL_PASSWORD: 'test123'
MYSQL_ROOT_PASSWORD: 'test123'
MYSQL_DATABASE: "patrondb"
MYSQL_USER: "patron"
MYSQL_PASSWORD: "test123"
MYSQL_ROOT_PASSWORD: "test123"
TIMEZONE: UTC
ports:
- '3306:3306'
- "3306:3306"
expose:
- '3306'
- "3306"
volumes:
- mysql-db:/var/lib/mysql
redis:
image: docker.io/bitnami/redis:6.2
environment:
- ALLOW_EMPTY_PASSWORD=yes
ports:
- '6379:6379'
- "6379:6379"
volumes:
- 'redis_data:/bitnami/redis/data'
- "redis_data:/bitnami/redis/data"
localstack:
image: localstack/localstack:2.1
ports:
Expand Down Expand Up @@ -83,14 +83,14 @@ services:
protocol: tcp
mode: host
environment:
HIVEMQ_CONTROL_CENTER_USER: 'admin'
HIVEMQ_CONTROL_CENTER_PASSWORD: '123456'
HIVEMQ_CLUSTER_TRANSPORT_TYPE: 'TCP'
HIVEMQ_CONTROL_CENTER_USER: "admin"
HIVEMQ_CONTROL_CENTER_PASSWORD: "123456"
HIVEMQ_CLUSTER_TRANSPORT_TYPE: "TCP"
mongo:
image: mongo:5
restart: always
ports:
- '27017:27017'
- "27017:27017"
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
Expand All @@ -99,4 +99,4 @@ volumes:
driver: local
mysql-db:
redis_data:
driver: local
driver: local

0 comments on commit 33a9ffe

Please sign in to comment.