devops-exercises/topics/devops/containerize_app.md
abregman 99c4e02ecf Rename exercises dir
Name it instead "topics" so it won't be
strange if some topics included "exercises" directory.
2022-08-02 01:53:56 +03:00

544 B

Containerize an Application

  1. Clone an open source project you would like to containerize. A couple of suggestions:
https://github.com/bregman-arie/node-hello-world
https://github.com/bregman-arie/flask-hello-world
  1. Write a Dockerfile you'll use for building an image of the application (you can use any base image you would like)
  2. Build an image using the Dockerfile you've just wrote
  3. Verify the image exists
  4. [Optional] Push the image you've just built to a registry
  5. Run the application
  6. Verify the app is running