No data volumes for tests instances in Docker

This commit is contained in:
Thomas Sileo
2018-05-21 13:03:44 +02:00
parent d3f6397999
commit 95f6b5e214
2 changed files with 36 additions and 4 deletions

32
docker-compose-tests.yml Normal file
View File

@@ -0,0 +1,32 @@
version: '3'
services:
web:
build: .
ports:
- "${WEB_PORT}:5005"
links:
- mongo
- rmq
volumes:
- "${CONFIG_DIR}:/app/config"
- "./static:/app/static"
environment:
- MICROBLOGPUB_AMQP_BROKER=pyamqp://guest@rmq//
- MICROBLOGPUB_MONGODB_HOST=mongo:27017
celery:
build: .
links:
- mongo
- rmq
command: 'celery worker -l info -A tasks'
environment:
- MICROBLOGPUB_AMQP_BROKER=pyamqp://guest@rmq//
- MICROBLOGPUB_MONGODB_HOST=mongo:27017
mongo:
image: "mongo:latest"
rmq:
image: "rabbitmq:latest"
hostname: "my-rabbit"
environment:
- RABBITMQ_ERLANG_COOKIE=secretrabbit
- RABBITMQ_NODENAME=rabbit@my-rabbit