Skip to content

Commit

Permalink
Update copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
stripthis committed Feb 11, 2019
2 parents d0a480b + 9664960 commit 8a706b3
Show file tree
Hide file tree
Showing 162 changed files with 219 additions and 177 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/_/ \__,_/____/____/_,___/\____/_/\__/

The open-source password management solution for teams
(c) 2018 Passbolt SARL
(c) 2019 Passbolt SA
https://www.passbolt.com


Expand Down
2 changes: 1 addition & 1 deletion _includes/common/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion _includes/hosting/docker-system-requirements.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

## Optional system requirements

* MySQL < 8.x or MariaDB if you plan not to host mysql on a docker container.
* MySQL < 8.x or MariaDB as separated containers or host installation.
* docker-compose if you plan to use a docker-compose.yml file to run passbolt container.
* rng-tools/haveged for faster filling of container entropy pool. These tools come handy in cases where GnuPG complains about no entropy is available to perform some operation (generate keys, encrypt, sign...) inside the docker container. [Important considerations](https://security.stackexchange.com/questions/39992/is-it-safe-to-use-rng-tools-on-a-virtual-machine)
12 changes: 12 additions & 0 deletions _includes/hosting/docker-usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ Passbolt requires a database backend to store the information. In this section w
A subscription key file is also required to use Passbolt Pro. You can get the subscription key [here](https://www.passbolt.com/)
{% endif %}

{% include messages/warning.html
content="**Please note:** Passbolt uses Mariadb/MySQL as a storage backend for encrypted passwords. It is mandatory to persist `/var/lib/mysql`
if you are running Mariadb/MySQL on a docker container to avoid data loss when restarting such containers."
%}

### Manually run passbolt container and mariadb container

It is recommended to create a user defined network to ease the container name resolution. Using a user defined network will provide a method to access containers using their names instead ip addresses:
Expand All @@ -13,8 +18,15 @@ $ docker network create passbolt_network
```

First run the mariadb container:

As we want all the data in mariadb to survive container restarts it is recommended to create either a docker
volume or a host directory and mount it at `/var/lib/mysql`

```bash
$ docker volume create mariadb_passbolt_data
$ docker run -d --name mariadb --net passbolt_network \
--mount source=mariadb_passbolt_data, \
target=/var/lib/mysql \
-e MYSQL_ROOT_PASSWORD=<root_password> \
-e MYSQL_DATABASE=<mariadb_database> \
-e MYSQL_USER=<mariadb_user> \
Expand Down
2 changes: 1 addition & 1 deletion assets/css/help.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/js/search.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* @licence MIT License
* @copyright Copyright (c) 2017 CloudCannon
* @copyright Copyright (c) 2018 Passbolt SARL
* @copyright Copyright (c) 2019 Passbolt SA
*/
(function() {
function displaySearchResults(results, store) {
Expand Down
2 changes: 1 addition & 1 deletion docs/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/_/ \__,_/____/____/_,___/\____/_/\__/

The open-source password management solution for teams
(c) 2018 Passbolt SARL
(c) 2019 Passbolt SA
https://www.passbolt.com


Expand Down
4 changes: 2 additions & 2 deletions docs/api/search-index.json
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@
"hosting-install-pro-docker-html": {
"title": "Docker install",
"category": "",
"content": "System requirements Docker CE Optional system requirements MySQL &lt; 8.x or MariaDB if you plan not to host mysql on a docker container. docker-compose if you plan to use a docker-compose.yml file to run passbolt container. rng-tools/haveged for faster filling of container entropy pool. These tools come handy in cases where GnuPG complains about no entropy is available to perform some operation (generate keys, encrypt, sign…) inside the docker container. Important considerations Getting passbolt container Passbolt containers follow the following tagging: &lt;version_number&gt;-&lt;build_number&gt;-pro-debian Nobody is perfect so we also provide a latest tag for Passbolt containers. Through all this documentation pages we make use of the latest tag so users will get the last version of passbolt.However, it is recommended that users pull the tags pointing to specific passbolt versions when running in environments other than testing. Get passbolt Pro latest docker container: $ docker pull passbolt/passbolt:latest-pro Using passbolt container Passbolt...",
"content": "System requirements Docker CE Optional system requirements MySQL &lt; 8.x or MariaDB as separated containers or host installation. docker-compose if you plan to use a docker-compose.yml file to run passbolt container. rng-tools/haveged for faster filling of container entropy pool. These tools come handy in cases where GnuPG complains about no entropy is available to perform some operation (generate keys, encrypt, sign…) inside the docker container. Important considerations Getting passbolt container Passbolt containers follow the following tagging: &lt;version_number&gt;-&lt;build_number&gt;-pro-debian Nobody is perfect so we also provide a latest tag for Passbolt containers. Through all this documentation pages we make use of the latest tag so users will get the last version of passbolt.However, it is recommended that users pull the tags pointing to specific passbolt versions when running in environments other than testing. Get passbolt Pro latest docker container: $ docker pull passbolt/passbolt:latest-pro Using passbolt container Passbolt requires a database backend to...",
"url": "https://help.passbolt.com/hosting/install/pro/docker.html"
},
"hosting-upgrade-pro-upgrade-pro-from-ce-v2-html": {
Expand All @@ -496,7 +496,7 @@
"hosting-install-ce-docker-html": {
"title": "Docker passbolt installation",
"category": "",
"content": "System requirements Docker CE Optional system requirements MySQL &lt; 8.x or MariaDB if you plan not to host mysql on a docker container. docker-compose if you plan to use a docker-compose.yml file to run passbolt container. rng-tools/haveged for faster filling of container entropy pool. These tools come handy in cases where GnuPG complains about no entropy is available to perform some operation (generate keys, encrypt, sign…) inside the docker container. Important considerations Getting passbolt container Passbolt containers follow the following tagging: &lt;version_number&gt;-&lt;build_number&gt;-debian Nobody is perfect so we also provide a latest tag for Passbolt containers. Through all this documentation pages we make use of the latest tag so users will get the last version of passbolt.However, it is recommended that users pull the tags pointing to specific passbolt versions when running in environments other than testing. Get passbolt latest docker container: $ docker pull passbolt/passbolt:latest Using passbolt container Passbolt requires...",
"content": "System requirements Docker CE Optional system requirements MySQL &lt; 8.x or MariaDB as separated containers or host installation. docker-compose if you plan to use a docker-compose.yml file to run passbolt container. rng-tools/haveged for faster filling of container entropy pool. These tools come handy in cases where GnuPG complains about no entropy is available to perform some operation (generate keys, encrypt, sign…) inside the docker container. Important considerations Getting passbolt container Passbolt containers follow the following tagging: &lt;version_number&gt;-&lt;build_number&gt;-debian Nobody is perfect so we also provide a latest tag for Passbolt containers. Through all this documentation pages we make use of the latest tag so users will get the last version of passbolt.However, it is recommended that users pull the tags pointing to specific passbolt versions when running in environments other than testing. Get passbolt latest docker container: $ docker pull passbolt/passbolt:latest Using passbolt container Passbolt requires a database backend to store...",
"url": "https://help.passbolt.com/hosting/install/ce/docker.html"
},
"hosting-upgrade-ce-upgrade-ce-html": {
Expand Down
2 changes: 1 addition & 1 deletion docs/assets/css/help.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/assets/js/search.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* @licence MIT License
* @copyright Copyright (c) 2017 CloudCannon
* @copyright Copyright (c) 2018 Passbolt SARL
* @copyright Copyright (c) 2019 Passbolt SA
*/
(function() {
function displaySearchResults(results, store) {
Expand Down
2 changes: 1 addition & 1 deletion docs/configure/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/configure/ldap-from-configuration-file.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/configure/ldap.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/configure/mfa/duo.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/configure/mfa/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/configure/mfa/yubikey.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/contribute/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/discover/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/faq/configure/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/faq/contribute/bug-report.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/faq/contribute/code-contribution.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/faq/contribute/code-of-conduct.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/faq/contribute/design-contribution.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/faq/contribute/financial-contribution.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/faq/contribute/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/faq/contribute/support-us.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/faq/discover/are-we-there-yet.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/faq/discover/feature-priority.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/faq/discover/how-does-it-work.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/faq/discover/how-is-different.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/faq/discover/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/faq/discover/is-sharing-password-a-bad-practice.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/faq/discover/what-is-passbolt.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/faq/discover/where-to-get-help.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/faq/discover/why-an-extension.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/faq/discover/why.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/faq/hosting/hosting-requirements.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/faq/hosting/how-to-backup.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion docs/faq/hosting/how-to-install.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/_/ \__,_/____/____/_.___/\____/_/\__/
Open source password manager for teams
© 2018 Passbolt SARL
© 2019 Passbolt SA
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
Loading

0 comments on commit 8a706b3

Please sign in to comment.