You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
379 B
YAML
17 lines
379 B
YAML
services:
|
|
microsite:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
image: resilience-microsite:latest
|
|
container_name: resilience-microsite
|
|
ports:
|
|
- "8080:80"
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "wget", "-q", "--spider", "http://localhost/"]
|
|
interval: 30s
|
|
timeout: 3s
|
|
retries: 3
|
|
start_period: 5s
|