16 lines
327 B
YAML
16 lines
327 B
YAML
version: '3.5'
|
|
services:
|
|
drawio:
|
|
image: jgraph/drawio
|
|
container_name: drawio
|
|
restart: unless-stopped
|
|
ports:
|
|
- 8085:8080
|
|
- 8445:8443
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "curl -f http://domain:8080 || exit 1"]
|
|
interval: 1m30s
|
|
timeout: 10s
|
|
retries: 5
|
|
start_period: 10s
|