Skip to content

Instantly share code, notes, and snippets.

@rabingaire
Created March 9, 2020 08:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rabingaire/2c752c86abd3a50de007268305d355fb to your computer and use it in GitHub Desktop.
Save rabingaire/2c752c86abd3a50de007268305d355fb to your computer and use it in GitHub Desktop.
version: "3"
networks:
queue-test:
driver: bridge
services:
tests:
container_name: "tests"
build:
context: .
depends_on:
- rabbitmq
networks:
- queue-test
rabbitmq:
container_name: "rabbitmq"
image: "rabbitmq:3.6-management-alpine"
ports:
- "5672:5672"
- "15672:15672"
networks:
- queue-test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment