chore: add arm64 container deployment and Gitea CI

This commit is contained in:
Hermes Agent
2026-07-26 23:07:36 +00:00
parent 14d3baea90
commit a9bdf3b46c
5 changed files with 108 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
services:
btc-monitor:
build:
context: .
image: btc-accumulation-monitor:local
ports:
- "3088:3088"
restart: unless-stopped
environment:
PLAYWRIGHT_BROWSERS_PATH: /ms-playwright
volumes:
- btc-monitor-data:/app/data
- btc-monitor-config:/app/config
healthcheck:
test:
- CMD
- /app/.venv/bin/python
- -c
- "import urllib.request; urllib.request.urlopen('http://127.0.0.1:3088/health/live', timeout=3)"
interval: 30s
timeout: 5s
start_period: 30s
retries: 3
volumes:
btc-monitor-data:
btc-monitor-config: