Skip to content

Instantly share code, notes, and snippets.

@DhruvaDave
Last active December 27, 2020 17:49
Show Gist options
  • Save DhruvaDave/858763f448a1f30fd33dcbedf62bc8b8 to your computer and use it in GitHub Desktop.
Save DhruvaDave/858763f448a1f30fd33dcbedf62bc8b8 to your computer and use it in GitHub Desktop.
version: '3.8'
services:
rabbitmq:
image: 'rabbitmq:3-management'
ports:
- '5672:5672'
- '15672:15672'
worker:
build: worker
volumes:
- ./worker:/app
environment:
- PYTHONUNBUFFERED=1
server:
build: server
volumes:
- ./server:/app
ports:
- 5000:5000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment