1
0
Fork 0
mirror of https://github.com/overleaf/toolkit.git synced 2025-04-19 07:18:06 +02:00
overleaf-toolkit/lib/docker-compose.mongo.yml

25 lines
511 B
YAML
Raw Normal View History

2020-06-02 14:20:23 +01:00
---
version: '2.2'
services:
mongo:
restart: always
image: "${MONGO_IMAGE}"
container_name: mongo
volumes:
- "${MONGO_DATA_PATH}:/data/db"
expose:
- 27017
healthcheck:
test: echo 'db.stats().ok' | mongo localhost:27017/test --quiet
interval: 10s
timeout: 10s
retries: 5
sharelatex:
depends_on:
mongo:
condition: service_healthy
links:
- mongo