33 lines
831 B
YAML
33 lines
831 B
YAML
version: '3.7'
|
|
services:
|
|
|
|
redis-master:
|
|
image: redis:7.0.4
|
|
command: "redis-server --requirepass KT-i5#i%-%LxKfZ5YJj6"
|
|
container_name: redis
|
|
volumes:
|
|
- "./redis_master:/home/redis_master/data"
|
|
ports:
|
|
- '6379:6379'
|
|
working_dir: /home/redis_master
|
|
|
|
dynamodb:
|
|
command: "-jar DynamoDBLocal.jar -inMemory"
|
|
image: amazon/dynamodb-local:2.0.0
|
|
container_name: dynamodb-local
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
- "./dynamodb:/home/dynamodblocal/data"
|
|
working_dir: /home/dynamodblocal
|
|
|
|
rabbitmq:
|
|
image: 'rabbitmq:3-management-alpine'
|
|
container_name: rabbitmq-stream
|
|
ports:
|
|
- "5672:5672"
|
|
- "15672:15672"
|
|
environment:
|
|
RABBITMQ_ERLANG_COOKIE: "RabbitMQ-My-Cookies"
|
|
RABBITMQ_DEFAULT_USER: "admin"
|
|
RABBITMQ_DEFAULT_PASS: "admin" |