Create a docker image/container from EC2 AMI

蹲街弑〆低调 提交于 2019-11-30 04:52:26
user2153517

Here is how I did it.

  • On source AMI locate root volume snapshot id in the description

/dev/sda1=snap-eb79b0b1:15:true:gp2

  • Launch instance with public Ubuntu 14.04 AMI

  • Create volume from snapshot snap-eb79b0b1 (in the same region that the instance runs).

  • Attach volume to the instance as /dev/sdf

  • mount volume to /mnt

mount /dev/xvdf /mnt

(or)

mount /dev/xvdf1 /mnt

  • install docker

https://docs.docker.com/engine/installation/ubuntulinux/

  • import docker image from mounted root volume

tar -c -C /mnt/ . | docker import - appcimage-master-1454216413

  • run

docker run -t -i 6d6614111fcb03d5ca79541b8a23955202dfda74995d968b5ffb5d45c7e68da9 /bin/bash

larsks

Docker can create an image from a tar file using the docker import command. From the documentation:

Usage: docker import URL|- [REPOSITORY[:TAG]]

Create an empty filesystem image and import the contents of the tarball 
(.tar, .tar.gz, .tgz, .bzip, .tar.xz, .txz) into it, then optionally
tag it.

So you should be able to create a tar archive from your AMI image and then feed that to docker.

user5632604

When creating the tar file cd to the directory and tar the tree from there.

cd /media/my-external-drive
tar -czvf /tmp/drive-image.tgz

And then to create the image ... docker import /tmp/drive-image.tgz

This allows the dockerized container to create the correct paths when you run it.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!