How to install and setup VaultWarden

VaultWarden is a fork and free open source version of BitWarden, the popular password manager. Dependencies Update the system sudo apt update Install VaultWarden Run the following command docker run -d --name vaultwarden -v /vw-data/:/data/ -p AvailablePort:80 vaultwarden/server:latest Head to My Nginx Proxy Manager Guide to setup HTTPS as VaultWarden Requires this. Head to yourip:AssignedPort. Create an account! Importing from a previous password manager Importing from KeePass or KeePassX Importing from LastPass Setup Mobile App Install the app from either Google Play or the App Store...

December 28, 2022 · 1 min · 150 words

How to install Uptime Kuma

Uptime Kuma is a self-hosted monitoring tool like “Uptime Robot” with support for notifciations, status pages and many types of monitors. Intall Uptime Kuma Install Docker sudo apt install docker.io Run the following Docker command docker run -d --restart=always -p 3001:3001 -v uptime-kuma:/app/data --name uptime-kuma louislam/uptime-kuma:1 Head to yourip:30001 and enter your new account details. Add your first monitor HTTPS To create a HTTPS monitor, fill in the details below with the website you’d like to monitor...

June 8, 2022 · 2 min · 257 words

How to install NGINX proxy manager and Cloudlfare

NGINX proxy manager is what it says on the tin, its a proxy manager allowing you to point a domain to an IP and port on your server so that the user can see the service without needing the IP and port. What is Cloudflare Cloudflare is a content delivery network (CDN). This will not only improve latency to your website, it will also hide the IP that visitors see when they are connected to your self hosted services....

May 30, 2022 · 3 min · 497 words

How to install Portainer

Portainer is a GUI that can be hosted within a docker container that allows you to manage other docker containers with features such as Starting and stopping sontainers. Creating Docker containers One click installs of popular containers Docker-compose creation With both light and dark mode themes, Portainer is a great way to manage your containers. So heres how to install it. How to install Portainer on Ubuntu Prerequisites Docker Docker Compose Commands docker volume create portainer_data Setup a volume for portainer to store its data...

May 28, 2022 · 1 min · 171 words

How to install Docker and Docker Compose

Docker is a set of platform as a service (PAAS) products that use OS-level virtualization to deliver software in packages called containers. Dependencies Update the system sudo apt update Docker Install Install docker sudo apt install docker.io To check whether docker has installed correctly, run the following command sudo docker -v `Docker version 20.10.12, build 20.10.12-0ubuntu2~20.04.1 To run docker containers the docker run command is used docker run hello-world Unable to find image 'hello-world:latest' locally latest: Pulling from library/hello-world 0e03bdcc26d7: Pull complete Digest: sha256:6a65f928fb91fcfbc963f7aa6d57c8eeb426ad9a20c7ee045538ef34847f44f1 Status: Downloaded newer image for hello-world:latest Hello from Docker!...

May 28, 2022 · 1 min · 206 words