Menu
Install Docker from Ubuntu Repository $ sudo apt install docker.io Below command will start Docker and ensure that starts after the reboot: $ sudo systemctl start docker $ sudo systemctl enable docker $ docker –version Output: Docker version 17.03.2-ce, build f5ec1e2 Docker Login $ sudo docker exec -it docker /bin/bash Install the Dependencies $ sudo […]
Install PostgreSQL & pgAdmin4 on Ubuntu How to Install PostgreSQL 11 on Ubuntu 18.04 & 16.04 LTS 1. Enable PostgreSQL Apt Repository Run this command in your home directory sudo apt-get install wget ca-certificates wget –quiet -O – https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add – sudo sh -c ‘echo “deb http://apt.postgresql.org/pub/repos/apt/ `lsb_release -cs`-pgdg main” >> /etc/apt/sources.list.d/pgdg.list’ […]