With this repo you will be able to set up the fantastic Portainer as a container over SSL auto generated and auto renewed by our Web Proxy.
In order to use this compose file (docker-compose.yml) you must have:
- docker https://docs.docker.com/engine/installation/
- docker-compose https://docs.docker.com/compose/install/
- docker-compose-letsencrypt-nginx-proxy-companion https://github.com/evertramos/docker-compose-letsencrypt-nginx-proxy-companion
- Clone this repository:
git clone https://github.com/evertramos/docker-portainer-letsencrypt.git
- Make a copy of our .env.sample and rename it to .env:
Update this file with your preferences.
#
# 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 environment
#
# 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=domain.com,www.domain.com,portainer.domain.com
#
# 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
#--
- Start your container
You can run our script, and it will use your predefined password:
# ./start.sh
Or you can simply start your compose environment:
# docker-compose up -d
If you run only
docker-compose up -d
you will be prompted to set your admin password when accessing your browser.
This container must be in a network connected to your webproxy containers or use the same network of the webproxy.
Please keep in mind that when starting for the first time it may take a few moments (even a couple minutes) to get your Let's Encrypt certificates generated.