19
18

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 5 years have passed since last update.

Docker/Docker Compose自身のバージョン更新

Posted at

前提

yumでdockerをinstall済み

Docker

  1. yum更新対象が存在することを確認
    yum info docker-engine

  2. 更新
    yum upgrade docker-engine

  3. 更新されたバージョンを確認
    docker -v

Docker Compose

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

  2. 更新されたバージョンを確認
    docker-compose -v

参考

docker : https://docs.docker.com/cs-engine/1.13/upgrade/
docker-compose : https://docs.docker.com/compose/install/

19
18
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
19
18

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?