1
0
Fork 0
mirror of https://github.com/overleaf/toolkit.git synced 2025-04-19 15:28:06 +02:00
overleaf-toolkit/lib/docker-compose.redis.yml
2020-07-09 11:09:09 +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