Skip to content

Commit

Permalink
Add docker compose for starting API server, celery and RabbitMQ
Browse files Browse the repository at this point in the history
  • Loading branch information
ptzianos committed Mar 26, 2019
1 parent c838894 commit fe30974
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version: 3.7

services:
api:
image: hermes-api:latest
ports:
- 8000

celery:
image: hermes-api:latest

rabbitmq:
image: rabbitmq:3.7.13
env:
RABBITMQ_DEFAULT_USER: user
RABBITMQ_DEFAULT_PASS: password
ports:
- 5672

0 comments on commit fe30974

Please sign in to comment.