How to install passbolt (password manager) on Docker

Introduction

Passbolt is an open source password manager designed for collaboration. You can securely generate, store, manage and monitor your team credentials. Get access to all of your logins and passwords from multiple browsers or even your mobile phone
You need to keep passbolt running during the following steps

Configuration

Testing Your Email Configuration

				
					git clone https://github.com/farshadnick/passbolt-dockercompose.git /opt/passbolt-docker

cd /opt/passbolt-docker
				
			
				
					docker-compose up -d
				
			
				
					docker-compose exec passbolt su -m -c "bin/cake passbolt send_test_email
				
			

Making Admin user :

				
					docker-compose exec passbolt su -m -c "bin/cake passbolt register_user -u john.doe@mydomain.com -f John -l Doe -r admin" -s /bin/sh www-data
				
			

Making Oridinary user :

				
					docker-compose exec passbolt su -m -c "bin/cake passbolt register_user -u john.doe@mydomain.com -f John -l Doe -r admin" -s /bin/sh www-data
				
			

You will probably give something like that you just need to copy it in browser

Start Bitwarden

				
					./bitwarden.sh start
				
			

You Can Cache Packages , Speed UP Downloading Packages and Also Not Accessing Your Servers To the Internet By Simply Using APT Cacher-NG

We have 2 option for  configuring Client To Give  Packages From  APT-Cacher-NG

1- Send All APT Repository Requests to the Proxy Section By Creating  /etc/apt/apt.conf.d/02proxy File  and Put Following Section To IT :

OR

Conclution

You Can Cache Packages , Speed UP Downloading Packages and Also Not Accessing Your Servers To the Internet By Simply Using APT Cacher-NG

Leave a Comment