add nginx reverse proxy examples

This commit is contained in:
Florian
2021-12-26 22:38:20 +01:00
committed by PlantUML
parent 12224aa16e
commit da290a15fe
8 changed files with 339 additions and 14 deletions

View File

@@ -0,0 +1,19 @@
version: "3"
services:
plantuml-server:
image: plantuml/plantuml-server:jetty
container_name: plantuml-server
environment:
- TZ="Europe/Berlin"
- BASE_URL="plantuml"
nginx:
image: nginx:alpine
container_name: nginx
ports:
- "80:80"
environment:
- TZ="Europe/Berlin"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro