This commit is contained in:
ZOMBIIIIIII
2026-04-29 22:00:26 +03:00
commit 5e0e8f73c5
12 changed files with 799 additions and 0 deletions

17
docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
services:
gweiparser:
build: .
image: gweiparser:latest
container_name: gweiparser
restart: unless-stopped
env_file: .env
environment:
PORT: 3004
ports:
- "3004:3004"
healthcheck:
test: ["CMD", "node", "-e", "fetch('http://localhost:3004/ping').then(r => process.exit(r.ok ? 0 : 1)).catch(() => process.exit(1))"]
interval: 30s
timeout: 5s
retries: 3
start_period: 10s