更新代码并修改远程仓库地址

This commit is contained in:
史悦
2025-09-02 13:53:24 +08:00
parent 9471480c89
commit 4c6e03a59f
9 changed files with 132 additions and 9 deletions

27
docker-compose.local.yml Normal file
View File

@@ -0,0 +1,27 @@
version: '3.8'
services:
app:
build:
context: .
dockerfile: Dockerfile
container_name: stock-scanner-app-local
ports:
- "8999:8888"
environment:
- API_KEY=${API_KEY}
- API_URL=${API_URL}
- API_MODEL=${API_MODEL}
- API_TIMEOUT=${API_TIMEOUT}
- LOGIN_PASSWORD=${LOGIN_PASSWORD}
- ANNOUNCEMENT_TEXT=${ANNOUNCEMENT_TEXT}
volumes:
- ./logs:/app/logs
- ./data:/app/data
restart: unless-stopped
networks:
- stock-scanner-network
networks:
stock-scanner-network:
driver: bridge