LoginSignup
1

More than 5 years have passed since last update.

Docker Compose のインストール

Last updated at Posted at 2018-08-15

やってみたのでメモ。こちらもそのまま公式ドキュメントの手順をなぞっただけだけど。

手順

  1. Githubからバイナリをインストールする(バージョンはCompose repository release page on GitHubを確認)

    # curl -L https://github.com/docker/compose/releases/download/1.23.2/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose
    
  2. 実行権限を付与する

    # chmod u+x /usr/local/bin/docker-compose
    
  3. バージョンを確認する

    # docker-compose --version
    

参考

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
1