overleaf/ubuntu/redis/compose.yaml

16 lines
226 B
YAML
Raw Normal View History

2024-07-12 14:40:53 +02:00
services:
redis:
image: "redis:6.2-alpine"
container_name: "redis"
hostname: "redis"
restart: always
volumes:
- redis:/data
ports:
- 6379:6379
network_mode: bridge
volumes:
redis: