mirror of
https://ghfast.top/https://github.com/aeroxw/tick-stock-panel.git
synced 2026-09-12 22:34:18 +08:00
17 lines
386 B
YAML
17 lines
386 B
YAML
# Phase 0 单 service:FastAPI 启动后既跑 API 又托管前端 dist。
|
|
# 见 ADR-17 / §8.1。
|
|
services:
|
|
app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: TickFlow_Stock_Panel
|
|
ports:
|
|
- "${PORT:-3018}:3018"
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./data:/app/data
|
|
- ./tiers.yaml:/app/tiers.yaml:ro
|
|
restart: unless-stopped
|