crypto.ai/docker-compose.yml
2025-04-29 12:02:05 +08:00

21 lines
467 B
YAML

version: '3.8'
services:
cryptoai:
build:
context: .
dockerfile: Dockerfile
container_name: cryptoai
image: cryptoai:0.0.2
restart: unless-stopped
volumes:
# 挂载配置文件
- ./cryptoai/config/config.yaml:/app/cryptoai/config/config.yaml
# 持久化数据和日志
- cryptoai_data:/app/cryptoai/data
- cryptoai_logs:/app/logs
command: python run.py
volumes:
cryptoai_data:
cryptoai_logs: