mirror of
https://github.com/overleaf/toolkit.git
synced 2025-04-19 15:28:06 +02:00
24 lines
511 B
YAML
24 lines
511 B
YAML
---
|
|
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
|