devops-exercises/topics/containers/containerized_db.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

404 B

Containerized DB

  1. Run a container with a database of any type of you prefer (MySql, PostgreSQL, Mongo, etc.)
  2. Verify the container is running
  3. Access the container and create a new table (or collection, depends on which DB type you chose) for students
  4. Insert a row (or document) of a student
  5. Verify the row/document was added

Click here for the solution