1
0
Fork 0
mirror of https://github.com/overleaf/toolkit.git synced 2025-04-18 14:58:21 +02:00
overleaf-toolkit/lib/docker-compose.redis.yml
2020-08-19 13:31:17 +01:00

19 lines
336 B
YAML

---
version: '2.2'
services:
redis:
restart: always
image: "${REDIS_IMAGE}"
volumes:
- "${REDIS_DATA_PATH}:/data"
container_name: redis
expose:
- 6379
sharelatex:
depends_on:
redis:
condition: service_started
links:
- redis