From 6963201ccab0496144f2c6558e5821c32e51a642 Mon Sep 17 00:00:00 2001 From: Vitaliy Turov Date: Sat, 14 Dec 2024 11:27:27 +0300 Subject: [PATCH] Init commit --- docker-compose.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..60f5892 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,17 @@ +version: '3.8' + +services: + rabbitmq: + image: rabbitmq:management + container_name: rabbitmq + ports: + - "5672:5672" + - "8081:15672" + environment: + RABBITMQ_DEFAULT_USER: admin + RABBITMQ_DEFAULT_PASS: password + volumes: + - rabbitmq_data:/var/lib/rabbitmq + +volumes: + rabbitmq_data: \ No newline at end of file