Files
rabbitmq/docker-compose.yml
DeOwl cfad265a33
All checks were successful
Build and Deploy Docker Image / build-and-push (push) Successful in 1m7s
v0.1.0
- working central server auth
- added ci/cd
2026-05-26 11:55:22 +03:00

29 lines
640 B
YAML
Executable File

services:
rabbitmq:
image: rabbitmq:3-management
container_name: rabbitmq
restart: unless-stopped
env_file: .env
depends_on:
- rabbit-auth-server
volumes:
- lib:/var/lib/rabbitmq
- ./config/rabbitmq.conf:/etc/rabbitmq/rabbitmq.conf
- ./config/enabled_plugins:/etc/rabbitmq/enabled_plugins
ports:
- 15672:15672
- 5672:5672/tcp
rabbit-auth-server:
image: git.deowl.ru/vkrb/rabbitmq-auth-backend:0.1.0
container_name: rabbit-auth-server
env_file: .env
volumes:
lib:
driver: local
driver_opts:
type: "none"
o: "bind"
device: "./data"