LoginSignup
0
0

More than 3 years have passed since last update.

[やってみた]Jetson nano Docker Compose インストール

Posted at

sudoなしでdockerコマンドを実行可能にする
(設定を反映するために再ログイン)

$ sudo usermod -aG docker $USER
$ exit

Docker Composeのインストール

$ sudo apt install -y curl

$ python --version
Python 2.7.15rc1

$ sudo apt update -y

$ curl -sSL https://bootstrap.pypa.io/get-pip.py | sudo python

$ pip --version
pip 20.0.2 from /usr/local/lib/python2.7/dist-packages/pip (python 2.7)

$ sudo apt-get install -y libffi-dev python-openssl libssl-dev

$ export DOCKER_COMPOSE_VERSION=1.24.0

$ sudo pip install docker-compose=="${DOCKER_COMPOSE_VERSION}"

$ docker-compose version
docker-compose version 1.24.0, build 0aa5906
docker-py version: 3.7.3
CPython version: 2.7.15rc1
OpenSSL version: OpenSSL 1.1.1  11 Sep 2018
0
0
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
0