あくまで自分向けのメモだからどこか間違ってるかも
続きを読む VirtualBox + ArchLinux + Dockerでnginxを動かしてみた
日: 2015年5月23日
VirtualBoxにArchLinux入れてDocker入れてみた
ホームページのサーバーのOSのEOLが近づいてるのもあって次のサーバー環境をどうしようか検討中。
で、試しにArchLinux + DockerをVirtualBoxに入れて遊んでみた。
ArchLinuxのインストール
archlinuxをVirtualBoxにインストール(1)(cocoa-tips.com様)を見てVirtualBoxにインストール。
再起動時に
no such device ad41~
のエラーが出たけど、DVDイメージから入りなおして
[bash]
packam -S linux
[/bash]
で解決。
Dockerのインストール
[bash]
pacman -Ss docker
[/bash]
で探したら
community/docker 1:1.6.2-2 Pack, ship and run any application as a lightweight container
とあっさり出てきたので
[bash]
packman -S docker
[/bash]
でサクッとインストール。
[bash]
docker search arch-linux
[/bash]
でArchLinuxのイメージ名探して
[bash]
docker run base/archlinux /bin/echo hello
[/bash]
で実行してみたら
Unable to find image 'base/archlinux:latest' locally Pulling repository base/archlinux dce0559daa1b: Download complete 511136ea3c5a: Download complete 9b0516337e5a: Download complete Status: Downloaded newer image for base/archlinux:latest hello
なんかできたっぽい。