From ac1df4d6a9d3175b4cf42c21cb98eedd60822657 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20=C5=A0=C3=B2d=C3=A9k=C3=A9?= Date: Thu, 2 Sep 2021 09:01:34 -0700 Subject: [PATCH] Updated `## Persist the todo data` section (#13434) * Updated `## Persist the todo data` section I provided a 3-step procedure from lines 81 to 102 on how to access the container's shell environment, since It was unclear how to access the `/etc/todos` directory. Also, nowhere, in the tutorial, was it mentioned that containers are *self-contained shell environments*. This information is crucial for beginners following along with the tutorial. Take care. * Second update This update was due to a suggestion provided by @thaJeztah . --- get-started/05_persisting_data.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get-started/05_persisting_data.md b/get-started/05_persisting_data.md index 98638037b8..c0297c7592 100644 --- a/get-started/05_persisting_data.md +++ b/get-started/05_persisting_data.md @@ -76,7 +76,7 @@ There are two main types of volumes. We will eventually use both, but we will st ## Persist the todo data By default, the todo app stores its data in a [SQLite Database](https://www.sqlite.org/index.html){:target="_blank" rel="noopener" class="_"} at -`/etc/todos/todo.db`. If you're not familiar with SQLite, no worries! It's simply a relational database in +`/etc/todos/todo.db` in the container's filesystem. If you're not familiar with SQLite, no worries! It's simply a relational database in which all of the data is stored in a single file. While this isn't the best for large-scale applications, it works for small demos. We'll talk about switching this to a different database engine later.