12 lines
252 B
YAML
12 lines
252 B
YAML
|
version: '2'
|
||
|
services:
|
||
|
nginx-portal:
|
||
|
image: nginx:alpine
|
||
|
volumes:
|
||
|
- ./example/nginx/portal/nginx.conf:/etc/nginx/nginx.conf
|
||
|
- ./example/nginx/portal/ssl:/etc/ssl
|
||
|
ports:
|
||
|
- "8080:443"
|
||
|
networks:
|
||
|
- example-network
|