Last active 1688743460

Generate diagrams from textual description.

docker-compose.yml Raw
1services:
2 # PlantUML
3 plantuml:
4 container_name: ${PLANTUML_CONTAINER_NAME:-PlantUML}
5 hostname: plantuml
6 image: plantuml/plantuml-server:${PLANTUML_TAG:-latest}
7 restart: ${RESTART:-unless-stopped}
8 healthcheck:
9 test: curl -f http://localhost:8080/ || exit 1
10 ports:
11 - ${PLANTUML_PORT:-8080}:8080
12 volumes:
13 # Bind mounts
14 #- /${SYNOLOGY_VOLUME:-volume1}/docker/${PLANTUML_CONTAINER_NAME:-PlantUML}/tmp/jetty:/tmp/jetty
15 # Volumes
16 - plantuml:/tmp/jetty
17
18volumes:
19 # PlantUML
20 plantuml:
21
sample.env Raw
1# Uncomment and change the following variables if you want to use them.
2#RESTART=unless-stopped
3#PLANTUML_CONTAINER_NAME=PlantUML
4#PLANTUML_TAG=latest
5#PLANTUML_PORT=8080
6