前回の続き
起動設定
起動設定をして、machinectlコマンド経由で起動してみます
curl -L https://git.io/fpNm1 > /etc/systemd/system/systemd-nspawn@.service
これだけです
あとはmachinectlコマンドで操作できます
# コンテナイメージ一覧
machinectl list-images
# 動作コンテナ一覧
machinectl list
# start
machinectl start ubuntu
# stop
machinectl stop ubuntu
# 再起動後も自動起動させる
machinectl enable ubuntu
# 自動起動の解除
machinectl disable ubuntu
試しにmachinectl enable ubuntu
してからホストを再起動してみます
systemctl reboot
再起動後 http://10.100.0.3/
にアクセスしてubuntu1の文字が見えたらOKです
続く