more refactorin

This commit is contained in:
Michele Scandura 2020-11-06 20:08:27 +00:00
parent 4dfbcff460
commit 2372fbb620
78 changed files with 120 additions and 398 deletions

29
docker-compose.yml Normal file
View file

@ -0,0 +1,29 @@
# docker-compose.yml
version: '3'
services:
web:
build:
# build from Dockerfile
context: .
dockerfile: Dockerfile
ports:
- "5000:80"
# volumes:
# - .:.
redis:
image: redis
rabbitmq:
image: 'docker.io/bitnami/rabbitmq:3.8-debian-10'
ports:
- '4369:4369'
- '5672:5672'
- '25672:25672'
- '15672:15672'
volumes:
- 'rabbitmq_data:/bitnami'
volumes:
rabbitmq_data:
driver: local