| # Local development MongoDB for Pocket Archive. | |
| # Do not treat this compose file as production deployment config. | |
| services: | |
| mongo: | |
| image: mongo:7 | |
| container_name: videoscriber-mongo | |
| restart: unless-stopped | |
| ports: | |
| - "27017:27017" | |
| environment: | |
| MONGO_INITDB_DATABASE: videoscriber_archive | |
| volumes: | |
| - videoscriber_mongo_data:/data/db | |
| volumes: | |
| videoscriber_mongo_data: | |