From charlesreid1

Revision as of 07:13, 24 March 2017 by Admin (talk | contribs) (Created page with "The Dockerfile is where you define the commands that populate your docker container. The idea is to have easy to start and easy to stop services that are stateless, and don't...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The Dockerfile is where you define the commands that populate your docker container.

The idea is to have easy to start and easy to stop services that are stateless, and don't "expect" stuff. (Not sure I understand that exactly, but ok.)

Web app stack example: LAMP would implement Apache as one container, MySQL as another, and PHP as another (well, maybe A+P as one.)

Maybe one container for a cache, too.

Keep em clean, keep em modular.