Docker, Lucee and your setup

Hi guys

I’ve been playing around with Docker and Lucee images for the last day and
liking the possibilities but I was wondering how you handle (or plan to
handle) your code base when testing and going live?

To give you some background; Last night was mount’ing my code from a local
machine repost via

docker run -p 80:80 -v ~/Projects/example.com/www/:/var/www
luceedockerfiles_nginx45

This was great as it gave me some flexibility to edit/commit/push/pull code
without rebuilding the Docker container. My next thought was, I could get a
large AWS instance and run multiple containers all pointing to separate
repo’s all hosted on the EC2 instance. The big downfall is that these are
not true containers and don’t stand independantly? I would also image that
I need an extra Nginx container setup to work as my proxy?

Whats your thoughts on this? Am I off base or is there just many ways to
skin this cat?

Andy J