mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-24 12:31:13 +00:00
9c4615e5b1
improve notes
20 lines
688 B
Markdown
20 lines
688 B
Markdown
# References
|
|
|
|
- https://help.passbolt.com/hosting/install/ce/docker.html
|
|
|
|
# Notes
|
|
|
|
Passbolt container runs as specific user with a UID and GUID of `33`.
|
|
|
|
Therefore, ensure proper permissions on the Docker data bind mount volumes:
|
|
|
|
````
|
|
sudo chgrp 33 /mnt/docker-volumes/passbolt/gpg
|
|
sudo chmod 770 /mnt/docker-volumes/passbolt/gpg
|
|
|
|
sudo chgrp 33 /mnt/docker-volumes/passbolt/jwt
|
|
sudo chmod 770 /mnt/docker-volumes/passbolt/jwt
|
|
````
|
|
|
|
After spawning up the container, you have to create your user account first. Please follow the referenced link above, which leads you to the official documentation and how-tos. It is also recommended to add SMTP into the mix to retrieve important emails.
|