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.redis.yml

20 lines
336 B
YAML
Raw Normal View History

2020-06-02 14:20:23 +01:00
---
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