mirror of
https://git.kotyczka.ch/developers/django.git
synced 2025-04-06 07:45:08 +02:00
22 lines
532 B
YAML
Executable File
22 lines
532 B
YAML
Executable File
version: '3'
|
|
services:
|
|
rabbitmq:
|
|
image: rabbitmq:management
|
|
container_name: mq
|
|
restart: unless-stopped
|
|
environment:
|
|
- RABBITMQ_DEFAULT_USER=mqadmin
|
|
- RABBITMQ_DEFAULT_PASS=3Mnj29jKBsFybc
|
|
ports:
|
|
# The standard AMQP protocol port
|
|
- '5672:5672'
|
|
# HTTP management UI
|
|
- '15672:15672'
|
|
volumes:
|
|
- ./demo/migration/queue/data/:/var/lib/rabbitmq/
|
|
- ./demo/migration/queue/log/:/var/log/rabbitmq/
|
|
networks:
|
|
- ametiq
|
|
networks:
|
|
ametiq:
|
|
external: true |