0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

docker/docker-composeをAWS AmazonLinux 2にインストール

Last updated at Posted at 2021-03-22

#概要
タイトル通りですが、普段使用しているLinuxと少し違っていたので備忘録として記載します

#前提条件
AWS EC2(t2-micro/Amazon Linux2 Kernel 5.10)

#Dockerのインストール
yum install でdockerを指定すれば使えるようになります。

$ sudo yum -y update
$ sudo yum -y upgrade

$ sudo amazon-linux-extras install docker

#docker-composeのインストール

こっちが少しだけ手こずりました。

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

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

$ sudo ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose

#Dockerの起動

$ sudo service docker start

#Visual Studio CodeのDocker拡張機能の適用
そのままだとDocker拡張機能で"Error: connect EACCES /var/run/docker.sock"と表示されてしまいます。
/var/run/docker.sock のパーミッションを変更すれば良いようです。

$ sudo chmod 666 /var/run/docker.sock
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?