This commit is contained in:
2026-03-21 10:47:11 +07:00
parent 6dc514d519
commit db610976a0
8 changed files with 0 additions and 0 deletions

21
docker-compose.yml Normal file
View File

@@ -0,0 +1,21 @@
# proxy-vm/docker-compose.yml
version: "3.9"
services:
proxy:
build: .
container_name: api-proxy
restart: unless-stopped
ports:
- "8080:8080"
env_file: .env
healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost:8080/health"]
interval: 30s
timeout: 5s
retries: 3
logging:
driver: "json-file"
options:
max-size: "50m"
max-file: "5"