forked from evertramos/docker-portainer-letsencrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.sample
67 lines (55 loc) · 1.33 KB
/
.env.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#
# docker-portainer-letsencrypt
#
# Portainer configured to work along with our Web Proxy
# https://github.com/evertramos/docker-compose-letsencrypt-nginx-proxy-companion
#
# This is the .env file to set up your portainer enviornment
#
# Container name for your Portainer
#
CONTAINER_NAME=portainer
#
# Path where your Portainer files will be located
#
PORTAINER_DATA_PATH=/path/to/your/portainer/data
#
# Password for Admin user
#
ADMIN_PASSWORD=your_admin_password
#
# Your domain (or domains)
#
DOMAINS=portainer.domain.com,portainer2.domain.com
#
# Port for portainer
#
PORT=9000
#
# Main domain for SSL certificate
#
MAIN_DOMAIN=portainer.domain.com
#
# Your email for Let's Encrypt register
#
LETSENCRYPT_EMAIL=your_email@domain.com
#
# Path to the certificates
# If you use our webproxy should be:
# /home/user/webproxy/data/certs
PORTAINER_SSL_PATH=/path/to/your/certs
#
# SSL Certificates previously generated
# You may use below webproxy to generate your ssl certificate
#(https://github.com/evertramos/docker-compose-letsencrypt-nginx-proxy-companion)
#
PORTAINER_SSL_CERTIFICATE=/certs/$MAIN_DOMAIN.crt
PORTAINER_SSL_KEY=/certs/$MAIN_DOMAIN.key
#
# Network name
#
# Your container app must use a network conencted to your webproxy
# https://github.com/evertramos/docker-compose-letsencrypt-nginx-proxy-companion
#
NETWORK=webproxy
#--