22 lines
426 B
YAML
22 lines
426 B
YAML
# 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"
|