mirror of
https://github.com/Alvin-Zilverstand/challenge-11.git
synced 2026-03-06 02:56:27 +01:00
14 lines
253 B
YAML
14 lines
253 B
YAML
|
|
services:
|
|
mongodb:
|
|
image: mongo:latest
|
|
container_name: car-tuning-crm-mongodb
|
|
ports:
|
|
- "27017:27017"
|
|
volumes:
|
|
- mongodb_data:/data/db
|
|
environment:
|
|
- MONGO_INITDB_DATABASE=car-tuning-crm
|
|
|
|
volumes:
|
|
mongodb_data: |