14 lines
331 B
YAML
14 lines
331 B
YAML
services:
|
|
hypixel-bans-api:
|
|
build: .
|
|
container_name: hypixel-bans-api
|
|
restart: unless-stopped
|
|
env_file: .env
|
|
ports:
|
|
- "127.0.0.1:8081:8080"
|
|
healthcheck:
|
|
test: ["CMD", "wget", "-qO-", "http://localhost:8080/health"]
|
|
interval: 30s
|
|
timeout: 5s
|
|
retries: 3
|
|
start_period: 5s
|