mirror of
https://github.com/daniviga/bite.git
synced 2025-02-19 23:06:03 +01:00
Add RabbitMQ to the stack and kombu
This commit is contained in:
parent
d993da8d47
commit
0031a6420a
@ -15,7 +15,7 @@ services:
|
|||||||
<<: *service_default
|
<<: *service_default
|
||||||
image: timescale/timescaledb:latest-pg12
|
image: timescale/timescaledb:latest-pg12
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_USER: "timescale"
|
POSTGRES_USER: "freedcs"
|
||||||
POSTGRES_PASSWORD: "password"
|
POSTGRES_PASSWORD: "password"
|
||||||
volumes:
|
volumes:
|
||||||
- "pgdata:/var/lib/postgresql/data"
|
- "pgdata:/var/lib/postgresql/data"
|
||||||
@ -23,3 +23,16 @@ services:
|
|||||||
- net
|
- net
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:5432:5432"
|
- "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"
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
Django
|
Django
|
||||||
djangorestframework
|
djangorestframework
|
||||||
psycopg2-binary
|
psycopg2-binary
|
||||||
|
kombu
|
||||||
|
Loading…
Reference in New Issue
Block a user