Docker is an open-source project to easily create lightweight, portable, self-sufficient containers from any application.

learn more… | top users | synonyms

0
votes
1answer
70 views

docker-izing a classical db-based webapp - single or multiple containers?

I have a classic Java webapp. It is composed of a database (PostgreSQL), a servlet container (Tomcat) and my code (deployed on Tomcat as a *.war file). I want to package/deploy it using Docker ...
4
votes
1answer
146 views

Continuous Integration using Docker

One of the main advantages of Docker is the isolated environment it brings, and I want to leverage that advantage in my continuous integration workflow. A "normal" CI workflow goes something like ...
7
votes
1answer
401 views

Doesn't dockerfile initial configuration defeat one of the key arguments of docker?

I'm very excited about Docker, if you're a developer in a big project you've suffered too much at the machine hands of environments and multi-platforms. One of the key selling points of Docker is ...