18 lines
381 B
YAML
18 lines
381 B
YAML
version: "3.8"
|
|
|
|
networks:
|
|
nginx:
|
|
name: nginx
|
|
external: true
|
|
|
|
services:
|
|
rabbit:
|
|
container_name: sphere-rabbitmq
|
|
image: rabbitmq:3.9.5-management
|
|
networks:
|
|
- nginx
|
|
restart: "no"
|
|
hostname: rabbitmq
|
|
volumes:
|
|
- ./deploy/rabbitmq_data:/var/lib/rabbitmq/mnesia/
|
|
- ./deploy/rabbitmq.conf:/etc/rabbitmq/conf.d/10-default-guest-user.conf |