mirror of
https://github.com/hantsy/nestjs-rest-sample.git
synced 2025-12-08 20:36:27 +00:00
19 lines
298 B
YAML
19 lines
298 B
YAML
version: '3.8' # specify docker-compose version
|
|
|
|
# Define the services/containers to be run
|
|
services:
|
|
|
|
mongodb:
|
|
image: mongo
|
|
volumes:
|
|
- mongodata:/data/db
|
|
ports:
|
|
- "27017:27017"
|
|
networks:
|
|
- backend
|
|
|
|
volumes:
|
|
mongodata:
|
|
|
|
networks:
|
|
backend: |