| 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
· 332 B · YAML
Raw
services:
# PlantUML
plantuml:
container_name: ${PLANTUML_CONTAINER_NAME:-PlantUML}
hostname: plantuml
image: plantuml/plantuml-server:${PLANTUML_TAG:-latest}
restart: ${RESTART:-unless-stopped}
healthcheck:
test: curl -f http://localhost:8080/ || exit 1
ports:
- ${PLANTUML_PORT:-8080}:8080
| 1 | services: |
| 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 |