mirror of
https://github.com/octoleo/plantuml-server.git
synced 2024-12-23 09:18:54 +00:00
19 lines
355 B
YAML
19 lines
355 B
YAML
|
version: "3"
|
||
|
|
||
|
services:
|
||
|
plantuml-server:
|
||
|
image: plantuml/plantuml-server:jetty
|
||
|
container_name: plantuml-server
|
||
|
environment:
|
||
|
- TZ="Europe/Berlin"
|
||
|
|
||
|
nginx:
|
||
|
image: nginx:alpine
|
||
|
container_name: nginx
|
||
|
ports:
|
||
|
- "80:80"
|
||
|
environment:
|
||
|
- TZ="Europe/Berlin"
|
||
|
volumes:
|
||
|
- ./nginx.conf:/etc/nginx/nginx.conf:ro
|