add nginx reverse proxy examples
This commit is contained in:
18
examples/nginx-simple/docker-compose.yml
Normal file
18
examples/nginx-simple/docker-compose.yml
Normal file
@@ -0,0 +1,18 @@
|
||||
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
|
||||
Reference in New Issue
Block a user