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.