From 709951a0cc7024ef4fc978759d43b05a1fc9048b Mon Sep 17 00:00:00 2001 From: radasys <39229072+radasys@users.noreply.github.com> Date: Wed, 17 May 2023 07:04:24 -0300 Subject: [PATCH] Update README.md This is to further describe the upgrade process from a non-Docker version to a Docker one. --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 7c94ef502..66dfbfcff 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,14 @@ To avoid injection attacks, ASP.NET Core defaults to only accepting forwarded he - Data for Remotely will be saved in `/var/www/remotely/` within two files: appsettings.json and Remotely.db. - These files will persist through teardown and setup of new Remotely containers. - If upgrading from a non-Docker version of Remotely, overwrite these files with the ones from your previous installation. + - In that case, please note that you may need to change _SQLite_ parameter in your non-Docker appsettings.json. You may have something like: + ``` + "SQLite": "DataSource=Remotely.db", + ``` + but this should be changed to reflect the new Remotely.db location (relative to the container): + ``` + "SQLite": "DataSource=/remotely-data/Remotely.db", + ``` - Use Caddy as a reverse proxy if you want to expose the site to the internet. - If this is the first run, create your account by clicking the `Register` button on the main page. - This account will be both the server admin and organization admin.