From 02ff7897c0bcb48521ddd0c494f346b6df275ab4 Mon Sep 17 00:00:00 2001
From: "B. van Berkum" <dev@dotmpe.com>
Date: Tue, 3 Oct 2017 00:23:34 +0200
Subject: Added docker quickstart example, with user-data volume

---
 doc/md/index.md | 12 ++++++++++++
 1 file changed, 12 insertions(+)

(limited to 'doc/md')

diff --git a/doc/md/index.md b/doc/md/index.md
index 24ada6c7..5f10227f 100644
--- a/doc/md/index.md
+++ b/doc/md/index.md
@@ -22,6 +22,18 @@ It runs the latest development version of Shaarli and is updated/reset daily.
 
 Login: `demo`; Password: `demo`
 
+Docker users can start a personal instance from an [autobuild image](https://hub.docker.com/r/shaarli/shaarli/). For an example to start a temporary Shaarli at ``localhost:8000``, and to keeps the data you create (config, storage) during the session:
+```
+MY_SHAARLI_VOLUME=$(cd /path/to/shaarli/data/ && pwd -P)
+docker run -ti --rm \
+         -p 8000:80 \
+         -v $MY_SHAARLI_VOLUME:/var/www/shaarli/data \
+         shaarli/shaarli
+```
+
+A brief guide on getting starting using docker is given in [Docker 101](docker/docker-101).
+
+To learn more about user data and how to keep it across versions, please see [Upgrade and Migration](Upgrade-and-migration) documentation.
 
 ## Features
 
-- 
cgit v1.2.3