Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 614 Bytes

docker-install.md

File metadata and controls

24 lines (19 loc) · 614 Bytes

Docker install

ubuntu

docker

sudo apt install apt-transport-https ca-certificates curl software-properties-common

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"

sudo apt update

apt-cache policy docker-ce

docker-compose

설치

sudo curl -L https://github.com/docker/compose/releases/download/1.25.0-rc2/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose

권한설정

sudo chmod +x /usr/local/bin/docker-compose