mirror of
https://github.com/octoleo/plantuml-server.git
synced 2024-11-16 17:25:13 +00:00
99f85c0c9b
Switch from absolute paths `hostpath` to relative paths `contextpath`. Unfortunately, for the url input javascript is necessary to resolve the relative url. Also see Issue #205.
20 lines
377 B
YAML
20 lines
377 B
YAML
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
|