Piotr Biernat
27222a479e
All checks were successful
continuous-integration/drone/push Build is passing
21 lines
312 B
YAML
21 lines
312 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
mongodb:
|
|
image: mongo:latest
|
|
env_file: .env
|
|
ports:
|
|
- 27017:27017
|
|
networks:
|
|
- app-network
|
|
|
|
rabbitmq:
|
|
image: rabbitmq:latest
|
|
env_file: .env
|
|
ports:
|
|
- 5672:5672
|
|
networks:
|
|
- app-network
|
|
networks:
|
|
app-network:
|
|
driver: bridge |