Skip to content

Instantly share code, notes, and snippets.

@ValchanOficial
Created September 1, 2026 18:35
Show Gist options
  • Select an option

  • Save ValchanOficial/865523c4213d238a5b3466101886b284 to your computer and use it in GitHub Desktop.

Select an option

Save ValchanOficial/865523c4213d238a5b3466101886b284 to your computer and use it in GitHub Desktop.
[Docker] RabbitMQ
docker run -d \\
--name rabbitmq-server \\
-p 5672:5672 \\
-p 15672:15672 \\
-e RABBITMQ_DEFAULT_USER=admin \\
-e RABBITMQ_DEFAULT_PASS=admin123 \\
-v rabbitmq_data:/var/lib/rabbitmq \\
rabbitmq:4.1-management
Acessar: http://localhost:15672
User: admin
Password: admin123
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment