CoolFace
Apppublic

imajij/parallel-dashboard

sourceHugging Faceupdated 3mo agoView on Hugging Face
1likes
docker-compose.yml14 linesDownload Raw Back to root
1# Optional: local MongoDB for development.2# Use this instead of Atlas while building locally, then point MONGO_URI3# at Atlas for "on the go" access. Start with: docker compose up -d4services:5  mongo:6    image: mongo:77    restart: unless-stopped8    ports:9      - "27017:27017"10    volumes:11      - parallel_mongo:/data/db12volumes:13  parallel_mongo:14