Files
linuxkit/alpine/aws
Justin Cormack e434c70507 Update to Alpine 3.4
Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2016-06-03 12:45:15 +01:00
..
2016-06-03 12:45:15 +01:00
2016-05-06 18:03:07 -07:00

Compile Moby for AWS (Amazon Machine Image)

Requirements

To compile, the requirements are:

  1. Must be working on a EC2 instance
  2. Must have docker and docker-compose installed
  3. Must have configured Amazon credentials on instances (aws configure)

(The build will mount ~/.aws into the build container).

Building

To bake the AMI:

$ make ami

Inside of the alpine/ subdirectory of the main Moby repo.

This will:

  1. Clean up any remaining artifacts of old AMI builds
  2. Creates a new EBS volume and attaches it to the build instance
  3. Formats and partitions the volume for installation of Linux
  4. Sets up artifacts (initrd.img and vmlinuz64) inside the new partition for booting
  5. Installs MBR to boot syslinux to the device
  6. Takes snapshot of EBS volume with Moby installed
  7. Turns the snapshot into an AMI

Testing

Once the AMI has been created a file, aws/ami_id.out will be written which contains its ID.

You can boot a small AWS instance from this AMI using the aws/run-instance.sh script.

There is no SSH available today, but inbound access on the Docker API should work if you configure a proper security group and attach it to the instance.

For instance, allow inbound access on :2375 and a command such as this from your compiler instance should work to get a "root-like" shell:

$ docker -H 172.31.2.176:2375 \
    run -ti \
    --privileged \
    -v /:/hostfs \
    alpine:3.4 \
    chroot /hostfs