dev-resources.site
for different kinds of informations.
RabbitMQ container with Docker Compose
Published at
9/2/2024
Categories
dockercompose
rabbitmq
Author
zsevic
Author
6 person written this
zsevic
open
Docker Compose facilitates spinning up a container for the RabbitMQ broker without installing it locally.
Prerequisites
- Docker Compose installed
Configuration
The following configuration spins up the RabbitMQ container with the management UI tool.
The connection string for the RabbitMQ broker with local
virtual host is amqp://localhost:5672/local
.
RabbitMQ management UI is available at the http://localhost:15672
link. Default credentials are guest
as username and guest
as password.
# docker-compose.yml
version: '3.8'
services:
rabbitmq:
image: rabbitmq:3-management
ports:
- 5672:5672
- 15672:15672
environment:
- RABBITMQ_DEFAULT_VHOST=local
volumes:
- 'rabbitmq_data:/data'
volumes:
rabbitmq_data:
Run the following command to spin up the container.
docker-compose up
Course
Build your SaaS in 2 weeks - Start Now
dockercompose Article's
30 articles in total
Want to Learn Docker in Advance Way?
read article
deploy Jenkins using docker compose with production ready
read article
Docker Advance Part 2: Docker Logging
read article
A Simple Guide to Docker Compose & Multi-Container Applications
read article
Dockerize nestjs app with postgres
read article
Tips and Tricks for Docker Compose: Leveraging the override Feature
read article
Dockerize nestjs application with Postgres
read article
RabbitMQ container with Docker Compose
currently reading
Quick and simple Local WordPress Setup for Lazy Developers
read article
Bug: Docker-compose up?
read article
How to resolve Docker Compose Warning WARN[0000] Found orphan containers
read article
How to resolve Docker Compose Warning WARN[0000] Found orphan containers
read article
How To Set Up Docker SeleniumΒ GRID
read article
How to Ensure Docker Compose Uses Environment Variables from the `.env` File
read article
Essential Docker Commands for Developers
read article
[Docker] How to fix 'host not found in upstream "host.docker.internal"'.
read article
Como configurar imagem Docker(PHP e Nginx) para projetos Laravel com PHP 8.3
read article
Containerize your multi-services app with docker compose
read article
αααααΆαααα»αα’αααΈαααΆαα α’αα αααα»α Docker compose.
read article
Installation of Docker Compose:
read article
MongoDB containers with Docker Compose
read article
An Overview of Docker Compose and its Features.
read article
How to change docker root data directory and why would you want to do that (hint: to optimize space)
read article
Containerize a Web Application using docker compose
read article
O Docker Compose agora tem uma V2, veja como instalar
read article
Vue 2 vite dockerized steps
read article
An Advanced Guide (2) to Docker: Managing Multi-Container Applications π³
read article
How to run mongodb using docker-compose in ubuntu
read article
How to run postgres database using docker and docker-compose
read article
Easy Dockerization with Docker INIT
read article
Featured ones: