add docker dependencies
This commit is contained in:
parent
e047b35f77
commit
6630577399
@ -32,7 +32,7 @@ services:
|
|||||||
replicas: 1
|
replicas: 1
|
||||||
|
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres
|
image: postgres:16.4-alpine
|
||||||
ports:
|
ports:
|
||||||
- "5432:5432"
|
- "5432:5432"
|
||||||
restart: always
|
restart: always
|
||||||
@ -56,6 +56,22 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- ./db-data/mongo:/data/db
|
- ./db-data/mongo:/data/db
|
||||||
|
|
||||||
|
mailhog:
|
||||||
|
image: mailhog/mailhog
|
||||||
|
ports:
|
||||||
|
- "1025:1025"
|
||||||
|
- "8025:8025"
|
||||||
|
|
||||||
|
rabbitmq:
|
||||||
|
image: 'rabbitmq:3.13-alpine'
|
||||||
|
ports:
|
||||||
|
- "5672:5672"
|
||||||
|
deploy:
|
||||||
|
mode: replicated
|
||||||
|
replicas: 1
|
||||||
|
volumes:
|
||||||
|
- ./db-data/rabbitmq:/var/lib/rabbitmq/
|
||||||
|
|
||||||
adminer:
|
adminer:
|
||||||
image: adminer
|
image: adminer
|
||||||
restart: always
|
restart: always
|
||||||
|
Loading…
Reference in New Issue
Block a user