1
0

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.

RaspberryPiOSをdockerイメージ化する

Posted at

やりたいこと

RaspberryPiOSでdockerを動かし、dockerコンテナの中でさらにRaspberryPiOSを動かせるようにする。
dockerリポジトリを探してもちょうど良さそうなイメージはない。が、公式のダウンロードサイトからroot.tar.gzのルートファイルシステムイメージがダウンロードできるので、これを利用してイメージを作るところからやる。

手順

1.dockerのインストール

2.root.tar.gzのダウンロード

curl -o root.tar.gz https://downloads.raspberrypi.org/raspios_lite_arm64/root.tar.xz

3.root.tar.gzのインポート

docker import root.tar.gz raspios:0.0.1

ちゃんと取り込まれたことを確認する。

docker images

4.コンテナの起動

docker create -it --name testcont01 raspios:0.0.1 /bin/bash
docker start testcont01
docker attach testcont01
1
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?