diff --git a/source/import_documentation/develop-sib-ldp-packages.rst b/source/import_documentation/develop-sib-ldp-packages.rst
index 41027e04159386ce4660b615cd94d814d042fca1..bd97bcda7702cc0e04d962830783b6d5900ea0d6 100644
--- a/source/import_documentation/develop-sib-ldp-packages.rst
+++ b/source/import_documentation/develop-sib-ldp-packages.rst
@@ -1,5 +1,7 @@
-Develop SIB server packages
-##########################
+How to develop SIB server packages
+###############################
+
+LDP packages represent capabilites the server could support. Each may have it's own configuration depending of what mission it fulfills. There is no limit of what a LDP package can do.
 
 Requirements
 =============
diff --git a/source/import_documentation/install-sib-server.rst b/source/import_documentation/install-sib-server.rst
index e640d44fe373c4e6c4ba2b2ec663d5acc13c6cd3..b1d45d5ea78817d337ab6b1aa831292b404a4f57 100644
--- a/source/import_documentation/install-sib-server.rst
+++ b/source/import_documentation/install-sib-server.rst
@@ -30,6 +30,9 @@ Create a project structure from a production template:
 
 For a development server remove the --production flag.
 
+
+
+
 Configure your LDP packages
 ============================
 
@@ -136,4 +139,49 @@ and URLs in urls.py:
         url(r'^api/admin/', admin.site.urls),
     ]
 
-Note: Alwaysdata static config /api/static/=/static/
\ No newline at end of file
+Note: Alwaysdata static config /api/static/=/static/
+
+
+Initiate the server with Docker
+===============================
+
+This is not intended to support production running.
+
+Setup your SIB server
+---------------------
+
+Create your packages.yml according to the documentation.
+Create the Dockerfile:
+
+.. code-block:: bash
+
+    FROM python:3.6
+    ENV PATH="/root/.local/bin:${PATH}"
+    RUN pip install --user -U sib-manager
+    WORKDIR /opt
+    RUN cd /opt/ && sib startproject sib_server
+    ADD packages.yml /opt/sib_server/packages.yml
+    RUN cd /opt/sib_server && sib install sib_server
+    EXPOSE 8000
+    CMD cd /opt/sib_server && python manage.py runserver 0.0.0.0:8000
+
+Build the image:
+
+.. code-block:: bash
+
+    docker build -t sibserver .
+
+Run the container:
+
+.. code-block:: bash
+
+    docker run --rm -p 127.0.0.1:8000:8000 -d sibserver
+
+Serve your client app
+---------------------
+
+Launch a container from within your code folder:
+
+.. code-block:: bash
+
+    docker run --rm -v $PWD:/code -w /code -u $UID -it -p 127.0.0.1:3000:3000 node npm install && npm run watch
\ No newline at end of file