20 lines
415 B
YAML
20 lines
415 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
podchaser-abs-provider:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: podchaser-abs-provider
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- "3000:3000" # host:container
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "wget", "-qO-", "http://localhost:3000/"]
|
|
interval: 30s
|
|
timeout: 5s
|
|
retries: 3
|
|
start_period: 10s
|