16 lines
321 B
YAML
16 lines
321 B
YAML
services:
|
|
graphfx-ui:
|
|
build:
|
|
context: .
|
|
image: graphfx-ui:local
|
|
container_name: graphfx-ui
|
|
restart: unless-stopped
|
|
ports:
|
|
- "18081:80"
|
|
healthcheck:
|
|
test: ["CMD", "wget", "-qO-", "http://127.0.0.1/"]
|
|
interval: 30s
|
|
timeout: 3s
|
|
retries: 3
|
|
start_period: 5s
|