Files
outlookapi/docker-compose.yml
huangzhenpc 4d8ea56a45 xx
2025-03-26 11:39:59 +08:00

25 lines
441 B
YAML
Raw Permalink 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.

version: '3'
services:
api:
build: .
ports:
- "5000:5000"
environment:
- REDIS_URL=redis://redis:6379/0
- API_KEY=dev_api_key # 开发环境API密钥生产环境请更改
- DEBUG=False
depends_on:
- redis
restart: unless-stopped
redis:
image: redis:alpine
ports:
- "6379:6379"
volumes:
- redis_data:/data
restart: unless-stopped
volumes:
redis_data: