From bcc4549b9a55335010fb158ffa17701d1a3b0dfc Mon Sep 17 00:00:00 2001 From: Nicolas Constant Date: Wed, 16 Sep 2020 20:18:22 -0400 Subject: [PATCH] added docker documentation --- DOCKER.md | 28 ++++++++++++++++++++++++++++ README.md | 2 ++ 2 files changed, 30 insertions(+) create mode 100644 DOCKER.md diff --git a/DOCKER.md b/DOCKER.md new file mode 100644 index 00000000..344aed45 --- /dev/null +++ b/DOCKER.md @@ -0,0 +1,28 @@ +# Sengi's Docker documentation + +Here is some more detailed informations for Sengi's Docker users. + +## Deploy Sengi's + +Execute: + +``` +docker run -d -p 80:80 nicolasconstant/sengi +``` + +Sengi will then be available on port 80 + +## Landing page + +Sengi's docker contains a landing page so that you can open a pop-up easily.
+It's available in ```https://your-host/start/index.html``` + +## Personalize the Privacy Statement + +You can personalize the privacy statement by linking it as follow: + +``` +docker run -d -p 80:80 -v /Path/privacy.html:/app/assets/docs/privacy.html nicolasconstant/sengi +``` + + diff --git a/README.md b/README.md index ae1f3687..9ac87974 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,8 @@ A docker image is available for auto-hosting your own Sengi webapp! docker run -d -p 80:80 nicolasconstant/sengi ``` +Find more informations [here](https://github.com/NicolasConstant/sengi/blob/master/DOCKER.md). + The docker image also provide a landing page so that you can open a pop-up really easily.
It's available in ```https://your-host/start/index.html```