何気なく、Ubuntu 18.04でsnap search dockerとかやったところ、Dockerのsnapパッケージで割と新しいDockerがインストールできるのに気がつきました。 ちょっと前に見たときは提供されているバージョンはディストリビューションのdocker.ioよりもバージョンが古いし必要性を感じなかったのですが、これを使う方法もあるわけですね。
ちなみにUbuntu 16.04でも同様にDockerのsnapパッケージを導入、利用できました。
~$ snap info docker name: docker summary: The docker app deployment mechanism publisher: docker-inc contact: snappy-devel@lists.ubuntu.com license: Apache-2.0 description: | Docker for snappy. This snap allows you to use the full capabilities of docker on snappy. In order to use 'docker build', 'docker save' and 'docker load', you need to place your dockerfile within $HOME. All files that you want docker to access to must be within this path. You may also use the 'docker-privilege' command to allow you to use 'docker run --privileged'. Because docker is unencumbered on snappy, it is recommended that you follow the Docker project's recommendations for using docker securely. snap-id: sLCsFAO8PKM5Z0fAKNszUOX0YASjQfeZ channels: stable: 18.06.1-ce (321) 102MB - candidate: 18.06.1-ce (321) 102MB - beta: 18.06.1-ce (321) 102MB - ...
インストールするには
こうするわけです。
~$ sudo snap install docker --stable docker 18.06.1-ce from 'docker-inc' installed ~$ ~$ sudo docker run --rm hello-world Unable to find image 'hello-world:latest' locally latest: Pulling from library/hello-world d1725b59e92d: Pull complete Digest: sha256:0add3ace90ecb4adbf7777e9aacf18357296e799f81cabc9fde470971e499788 Status: Downloaded newer image for hello-world:latest Hello from Docker! This message shows that your installation appears to be working correctly. To generate this message, Docker took the following steps: 1. The Docker client contacted the Docker daemon. 2. The Docker daemon pulled the "hello-world" image from the Docker Hub. (amd64) 3. The Docker daemon created a new container from that image which runs the executable that produces the output you are currently reading. 4. The Docker daemon streamed that output to the Docker client, which sent it to your terminal. To try something more ambitious, you can run an Ubuntu container with: $ docker run -it ubuntu bash Share images, automate workflows, and more with a free Docker ID: https://hub.docker.com/ For more examples and ideas, visit: https://docs.docker.com/get-started/
Dockerの設定を変更するには
ちなみに設定をdaemon.jsonに書く方法ですが、/var/snap/docker/current/config/daemon.json
ファイルに追記すれば良いようです。
以下の情報を参考にしました。
例えばbipを設定変更してみましょう。パッケージ版のDockerをインストールした場合は「/etc/docker/daemon.json」のファイルを編集しました。Spapパッケージ版のDockerの場合、次のファイルに記述します。設定を書き換えた後はDockerサービスを再起動します。
~$ sudo vi /var/snap/docker/current/config/daemon.json { "bip": "192.168.10.1/24", ←追記してみた行 "log-level": "error", "storage-driver": "aufs" } ~$ sudo snap restart docker ~$ ip a s docker0 3: docker0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default link/ether 02:42:ea:63:5f:5b brd ff:ff:ff:ff:ff:ff inet 192.168.10.1/24 brd 192.168.1.255 scope global docker0 valid_lft forever preferred_lft forever inet6 fe80::42:eaff:fe63:5f5b/64 scope link valid_lft forever preferred_lft forever
sudoを使わずにDockerコマンドの実行を許可するには
上記に書かれているように、Dockerグループを追加してからユーザーをdockerグループに追加して、再起動すると良いようです。 権限を反映させるため、デーモンの再起動を行います。
~$ sudo addgroup --system docker ~$ sudo adduser $USER docker ~$ newgrp docker ~$ sudo snap restart docker ~$ ~$ ls -l /var/run/docker.sock srw-rw---- 1 root docker 0 Nov 20 15:44 /var/run/docker.sock
これで、sudoなしで一般ユーザーでdockerコマンドが実行できます。
~$ docker run --rm hello-world