1
0
mirror of https://github.com/daniviga/bite.git synced 2024-11-22 21:16:12 +01:00

Add RabbitMQ to the stack and kombu

This commit is contained in:
Daniele Viganò 2020-06-02 23:20:34 +02:00
parent d993da8d47
commit 0031a6420a
Signed by: dani
GPG Key ID: DB49AFC03C40EE02
2 changed files with 15 additions and 1 deletions

View File

@ -15,7 +15,7 @@ services:
<<: *service_default
image: timescale/timescaledb:latest-pg12
environment:
POSTGRES_USER: "timescale"
POSTGRES_USER: "freedcs"
POSTGRES_PASSWORD: "password"
volumes:
- "pgdata:/var/lib/postgresql/data"
@ -23,3 +23,16 @@ services:
- net
ports:
- "127.0.0.1:5432:5432"
rabbitmq:
<<: *service_default
image: rabbitmq:3-management
environment:
RABBITMQ_DEFAULT_VHOST: "freedcs"
RABBITMQ_DEFAULT_USER: "freedcs"
RABBITMQ_DEFAULT_PASS: "password"
networks:
- net
ports:
- "15672:15672"
- "5672:5672"

View File

@ -1,3 +1,4 @@
Django
djangorestframework
psycopg2-binary
kombu