Остання активність 1688743460

Generate diagrams from textual description.

Версія c33e66b6a309fb293ba3185a6e57a05ce3a49c61

.env Неформатований
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
docker-compose.yml Неформатований
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