0
2

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をインストールする方法

Posted at

はじめに

Dockerをインストールする方法をメモ程度にまとめる。
有償化されたDockerデスクトップの回避策。

インストール方法

curl https://get.docker.com | sh

なお、インストール中にDockerデスクトップの使用を促すメッセージが出てストップするが、しばらくすると再開する。

プロキシ設定

プロキシの設定は、/etc/systemd/system/docker.service.d/override.confを作成し、以下のように記入する。

/etc/systemd/system/docker.service.d/override.conf
[Service]
Environment='http_proxy=http://proxy.server:8000'
Environment='https_proxy=http://proxy.server:8000'
Environment='HTTP_PROXY=http://proxy.server:8000'
Environment='HTTPS_PROXY=http://proxy.server:8000'
Environment='no_proxy=http://no.proxy.server:8000'

シェルスクリプトにすると以下のようになる。

#!/bin/bash
touch /etc/systemd/system/docker.service.d/override.conf
echo "[Service]" >> /etc/systemd/system/docker.service.d/override.conf
echo "Environment='http_proxy=http://proxy.server:8000'" >> /etc/systemd/system/docker.service.d/override.conf
echo "Environment='https_proxy=http://proxy.server:8000'" >> /etc/systemd/system/docker.service.d/override.conf
echo "Environment='HTTP_PROXY=http://proxy.server:8000'" >> /etc/systemd/system/docker.service.d/override.conf
echo "Environment='HTTPS_PROXY=http://proxy.server:8000'" >> /etc/systemd/system/docker.service.d/override.conf
echo "Environment='no_proxy=http://no.proxy.server:8000'" >> /etc/systemd/system/docker.service.d/override.conf

参考

0
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?