Rendy wijaya
1 min readNov 12, 2020

How to install docker and docker-compose in ubuntu 18.04 digital ocean

Hello Guys im doing great today again, in my spare time i’ll post how to install docker in digital ocean ubuntu,

okay first login with your root ubuntu

create new user, im using docker in username

root@ubuntu-s-2vcpu-2gb-sgp1–01:~# adduser docker

make docker in sudoers grup

root@ubuntu-s-2vcpu-2gb-sgp1–01:~# sudo usermod -aG sudo docker

always update your sistem first

sudo apt-get update

then looks in this https://docs.docker.com/engine/install/ubuntu/

Install transport https and necessary things

sudo apt-get install apt-transport-httpssudo apt-get install ca-certificatessudo apt-get install curlsudo apt-get install software-properties-common

Add Keyring and gpg

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg echo \
"deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null

Install docker engine

sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io

we’ve already install docker please do check it first

docker — version

then install docker-compose

from this source https://docs.docker.com/engine/install/ubuntu/

sudo curl -L "https://github.com/docker/compose/releases/download/1.27.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-composesudo chmod +x /usr/local/bin/docker-compose

then please do check again

docker-compose — version

okay thats all my man — — — you’ve succesfuly install docker-compose and docker

then we will make our first project container

install git first

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

No responses yet

Write a response