14 lines
191 B
YAML
14 lines
191 B
YAML
|
version: '3.7'
|
||
|
|
||
|
services:
|
||
|
mongodb:
|
||
|
image: mongo:latest
|
||
|
env_file: .env
|
||
|
ports:
|
||
|
- 27017:27017
|
||
|
networks:
|
||
|
- app-network
|
||
|
|
||
|
networks:
|
||
|
app-network:
|
||
|
driver: bridge
|