3
1

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.

Linuxでdocker-composeをroot以外のユーザーで使用する設定

Last updated at Posted at 2019-08-01

Linuxでdocker-composeをroot以外のユーザーで使用する時にグループを設定する必要があるのでメモしておく。

usernameというユーザーに設定する前提で解説する。

wheelグループを追加する。

$ sudo usermod -aG wheel username

dockerグループを追加する。

$ sudo usermod -aG docker username

現状のコンソールだと反映されてないので、新しいコンソールを立ち上げて追加されているか確認する。

$ groups
username wheel docker

docker-composeのインストールは公式サイトを参照する。
Install Docker Compose

現時点のインストール方法は下記を実行する。

$ sudo curl -L "https://github.com/docker/compose/releases/download/1.24.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
$ sudo chmod +x /usr/local/bin/docker-compose
3
1
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
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?