You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
546 B
19 lines
546 B
version: "3"
|
|
services:
|
|
rabbitmq:
|
|
image: daocloud.io/rabbitmq:3-management
|
|
container_name: ${PROJECT_NAME}_rabbitmq-default
|
|
ports:
|
|
- ${PORT_RABBITMQ}:5672
|
|
- ${PORT_CONSOLE_RABBITMQ}:15672
|
|
redis:
|
|
image: redis:latest
|
|
container_name: ${PROJECT_NAME}_redis-default
|
|
restart: always
|
|
ports:
|
|
- ${PORT_REDIS}:6379
|
|
volumes:
|
|
- ${IMAGE_REDIS}/redis.conf:/usr/local/etc/redis/redis.conf:rw
|
|
- ${IMAGE_REDIS}/data:/data:rw
|
|
command: /bin/bash -c "redis-server /usr/local/etc/redis/redis.conf"
|