14 lines
327 B
YAML
14 lines
327 B
YAML
services:
|
|
roncarve-web:
|
|
build: .
|
|
container_name: roncarve-web
|
|
restart: unless-stopped
|
|
ports:
|
|
- "127.0.0.1:8081:80"
|
|
healthcheck:
|
|
test: ["CMD", "wget", "-q", "--spider", "http://127.0.0.1/products/roncarve-harness/"]
|
|
interval: 10s
|
|
timeout: 3s
|
|
retries: 5
|
|
start_period: 5s
|