Docker with amazonlinux Docker with amazonlinux docker docker

Docker with amazonlinux


I had the same goal of testing instances in development environment and initially I thought it should be as easy as docker run amazonlinux:2 -it. But I was so wrong and it took me almost one full day to get it to work!

Funny thing is when you google "amazonlinux Docker" it's often people trying to install "Docker in amazonlinux", but here we want to install "amazonlinux in Docker"!

We also want to install Docker in that amazonlinux, so basically "Docker in amazonlinux in Docker" which is "Docker in Docker" eventually! ;D*

My findings:

  • Amazonlinux in Docker (created via FROM amazonlinux:2) is so bare and empty that it doesn't even have basic stuffs like sudo or passwd.) New AWS EC2 instances do.
  • In order to have your serviced properly working (to start any daemon, including Docker Daemon), you need to have /usr/sbin/init be there (via yum install initscripts and actually called. However, the meat you want to play with need your shell to start from /bin/bash.
  • You are running a Docker within a Docker. That needs to be priviledged from the host in your docker run via --priviledged.
  • You need to share the /sys/fs/cgroup from your host machine (it can be read-only) for it to be able to properly initialize docker daemon.

My solution:

1) To fulfill the first two issues above, your Dockerfile can be:

FROM amazonlinux:2RUN yum update -y && yum install -y initscripts;CMD ["/usr/sbin/init"]

2) Build an image from it, e.g. docker build . -t ax1

3) Then, to address the latter two issues above, run a detached (running in background) container from it, priviledged, with a shared volume to your /sys/fs/cgroup. e.g.

docker run --name ac11 -d --privileged -v /sys/fs/cgroup:/sys/fs/cgroup:ro ax1

4) Finally you can bash into it using docker exec -it ac11 bash

5) Now, it's very close to a new EC2 instance. (Yet, missing sudo, actual ec2-user and other stuffs that we skipped in our Dockerfile to keep this solution simple.)

Anyway, now you can install docker as instructed by AWS Docs. That is, once you are in the container, do:

amazon-linux-extras install -y docker;

and then restart the docker service once:

service docker restart;

Now, docker ps should be working!


Docker containers stops when they don't have a process to run. Add an entrypoint to your Dockerfile to keep the machine running.

You could do a sleep infinity or sleep 99999 if you don't really have any process to run.

FROM amazonlinux:2017.03RUN yum update -yCMD [“sleep”, “infinity”]


The docker container stops running after all the RUN commands are complete. You need a CMD or an ENTRYPOINT that runs and doesn't stop to keep your container alive. For a web service, this could be apache or nginx or whatever web service you are using to serve your PHP7 application.