Skip to content

Instantly share code, notes, and snippets.

@gurcankavakci
Created August 25, 2023 06:53
Show Gist options
  • Save gurcankavakci/89c81b72c6a21d04b704d37bb4341c14 to your computer and use it in GitHub Desktop.
Save gurcankavakci/89c81b72c6a21d04b704d37bb4341c14 to your computer and use it in GitHub Desktop.
Rabbitmq docker-compose.yml
version: "3.5"
services:
rabbitmq:
container_name: "rabbitmq"
image: rabbitmq:3.8-management-alpine
environment:
- RABBITMQ_DEFAULT_USER=guest
- RABBITMQ_DEFAULT_PASS=guest
ports:
- '5672:5672'
- '15672:15672'
restart: unless-stopped
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment