„Passbold Password Save“ ändern

master
Thomas Vogel 3 years ago
parent dacfa008cf
commit da638b21c9

@ -42,11 +42,11 @@ The easiest and recommended way to deploy your passbolt stack is to use docker-c
Step 1. Download our docker-compose.yml example file Step 1. Download our docker-compose.yml example file
wget https://download.passbolt.com/ce/docker/docker-compose-ce.yaml `wget https://download.passbolt.com/ce/docker/docker-compose-ce.yaml`
wget https://github.com/passbolt/passbolt_docker/releases/latest/download/docker-compose-ce-SHA512SUM.txt `wget https://github.com/passbolt/passbolt_docker/releases/latest/download/docker-compose-ce-SHA512SUM.txt`
Step 2. Ensure the file has not been corrupted by verifying its shasum Step 2. Ensure the file has not been corrupted by verifying its shasum
$ sha512sum -c docker-compose-ce-SHA512SUM.txt `sha512sum -c docker-compose-ce-SHA512SUM.txt`
Must return: Must return:
@ -64,6 +64,7 @@ Update this variable with the server name you plan to use. You will find at the
You must configure also SMTP settings to be able to receive notifications and recovery emails. Please find below the most used environment variables for this purpose: You must configure also SMTP settings to be able to receive notifications and recovery emails. Please find below the most used environment variables for this purpose:
Variable name Description Default value Variable name Description Default value
```
EMAIL_DEFAULT_FROM_NAME From email username 'Passbolt' EMAIL_DEFAULT_FROM_NAME From email username 'Passbolt'
EMAIL_DEFAULT_FROM From email address 'you@localhost' EMAIL_DEFAULT_FROM From email address 'you@localhost'
EMAIL_TRANSPORT_DEFAULT_HOST Server hostname 'localhost' EMAIL_TRANSPORT_DEFAULT_HOST Server hostname 'localhost'
@ -71,19 +72,22 @@ EMAIL_TRANSPORT_DEFAULT_PORT Server port 25
EMAIL_TRANSPORT_DEFAULT_USERNAME Username for email server auth null EMAIL_TRANSPORT_DEFAULT_USERNAME Username for email server auth null
EMAIL_TRANSPORT_DEFAULT_PASSWORD Password for email server auth null EMAIL_TRANSPORT_DEFAULT_PASSWORD Password for email server auth null
EMAIL_TRANSPORT_DEFAULT_TLS Set tls null EMAIL_TRANSPORT_DEFAULT_TLS Set tls null
```
For more information on which environment variables are available on passbolt, please check the passbolt environment variable reference. For more information on which environment variables are available on passbolt, please check the passbolt environment variable reference.
Step 4. Start your containers Step 4. Start your containers
docker-compose -f docker-compose-ce.yaml up -d `docker-compose -f docker-compose-ce.yaml up -d`
Step 5. Create first admin user Step 5. Create first admin user
```
$ docker-compose -f docker-compose-ce.yaml exec passbolt su -m -c "/usr/share/php/passbolt/bin/cake \ $ docker-compose -f docker-compose-ce.yaml exec passbolt su -m -c "/usr/share/php/passbolt/bin/cake \
passbolt register_user \ passbolt register_user \
-u <your@email.com> \ -u <your@email.com> \
-f <yourname> \ -f <yourname> \
-l <surname> \ -l <surname> \
-r admin" -s /bin/sh www-data -r admin" -s /bin/sh www-data
```
It will output a link similar to the below one that can be pasted on the browser to finalize user registration: It will output a link similar to the below one that can be pasted on the browser to finalize user registration:
https://my.domain.tld/setup/install/1eafab88-a17d-4ad8-97af-77a97f5ff552/f097be64-3703-41e2-8ea2-d59cbe1c15bc https://my.domain.tld/setup/install/1eafab88-a17d-4ad8-97af-77a97f5ff552/f097be64-3703-41e2-8ea2-d59cbe1c15bc

Loading…
Cancel
Save