This file aims to explain how to deploy Portainer inside a compose file with the admin password already set.
For this example, we'll use the password superpassword.
Use the following command to generate a hash for the password:
This file aims to explain how to deploy Portainer inside a compose file with the admin password already set.
For this example, we'll use the password superpassword.
Use the following command to generate a hash for the password:
| #!/bin/bash | |
| # Download all postfix necessities to run PHP mail() | |
| wget -P ~/ https://www.thawte.com/roots/thawte_Premium_Server_CA.pem && \ | |
| sudo mv ~/thawte_Premium_Server_CA.pem /usr/local/share/ca-certificates/thawte_Premium_Server_CA.crt && \ | |
| sudo update-ca-certificates ; | |
| # pre-answer interactive configuration for Postfix | |
| sudo debconf-set-selections <<< "postfix postfix/mailname string local.dev" | |
| sudo debconf-set-selections <<< "postfix postfix/main_mailer_type string 'Internet Site'" |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |