Files
soul-yongping/soul-api/deploy/docker-compose.yml
Alex-larget 6df1736e1e 1
2026-03-20 14:47:37 +08:00

17 lines
335 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# soul-api 本地开发用 Redis
# 用法docker compose -f deploy/docker-compose.yml up -d
services:
redis:
image: redis:7-alpine
container_name: soul-redis
ports:
- "6379:6379"
volumes:
- redis_data:/data
command: redis-server --appendonly yes
restart: unless-stopped
volumes:
redis_data: