11 lines
288 B
YAML
11 lines
288 B
YAML
services:
|
|
# draw.io
|
|
drawio:
|
|
container_name: ${DRAWIO_CONTAINER_NAME:-draw.io}
|
|
image: jgraph/drawio:${DRAWIO_TAG:-latest}
|
|
restart: ${RESTART:-unless-stopped}
|
|
healthcheck:
|
|
test: curl -f http://localhost:8080/ || exit 1
|
|
ports:
|
|
- ${DRAWIO_PORT:-8080}:8080
|