From 4c2d466fb4c3d11f6e361e49f6af8dc27128ccfc Mon Sep 17 00:00:00 2001 From: Demis Bellot Date: Thu, 14 Mar 2024 17:03:27 +0800 Subject: [PATCH] Create README.md --- MyApp/App_Data/README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 MyApp/App_Data/README.md diff --git a/MyApp/App_Data/README.md b/MyApp/App_Data/README.md new file mode 100644 index 0000000..5bebc95 --- /dev/null +++ b/MyApp/App_Data/README.md @@ -0,0 +1,11 @@ +## App Writable Folder + +This directory is designated for: + +- **Embedded Databases**: Such as SQLite. +- **Writable Files**: Files that the application might need to modify during its operation. + +For applications running in **Docker**, it's a common practice to mount this directory as an external volume. This ensures: + +- **Data Persistence**: App data is preserved across deployments. +- **Easy Replication**: Facilitates seamless data replication for backup or migration purposes.