From 105749556f775ff215d814107c518fa8aceb03cf Mon Sep 17 00:00:00 2001 From: Alice <alice.poggioli@hotmail.fr> Date: Thu, 30 Apr 2020 14:16:09 +0200 Subject: [PATCH] add docker install --- .../develop-sib-ldp-packages.rst | 6 ++- .../install-sib-server.rst | 50 ++++++++++++++++++- 2 files changed, 53 insertions(+), 3 deletions(-) diff --git a/source/import_documentation/develop-sib-ldp-packages.rst b/source/import_documentation/develop-sib-ldp-packages.rst index 41027e0..bd97bcd 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 e640d44..b1d45d5 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 -- GitLab