1
2
3
4
5
6
7
8
9
10
11
12
13
14
| # This configuration adds support for SSL
| version: '2.1'
| volumes:
| letsencrypt:
| driver: local
| services:
| webapp:
| ports:
| - "${WO_SSL_INSECURE_PORT_REDIRECT}:8080"
| volumes:
| - letsencrypt:/webodm/nginx/letsencrypt
| environment:
| - WO_SSL
| - WO_SSL_KEY
|
|