# HG changeset patch # User Sebastien Jodogne # Date 1640177909 -3600 # Node ID db20ad016bc277e8ed496d8ac28babb9497d1a72 # Parent 83beec704c98d6885b36414774b323161e200614 standalone debian repository diff -r 83beec704c98 -r db20ad016bc2 Sphinx/source/plugins/python.rst --- a/Sphinx/source/plugins/python.rst Tue Dec 21 15:18:58 2021 +0100 +++ b/Sphinx/source/plugins/python.rst Wed Dec 22 13:58:29 2021 +0100 @@ -772,7 +772,7 @@ .. _python_received_instance: Modifying received instances (new in 3.5 - not released yet) -........................................... +............................................................ Starting with release 3.5 of the Python plugin, it is possible to modify instances received by Orthanc before they are stored in diff -r 83beec704c98 -r db20ad016bc2 Sphinx/source/users/cookbook.rst --- a/Sphinx/source/users/cookbook.rst Tue Dec 21 15:18:58 2021 +0100 +++ b/Sphinx/source/users/cookbook.rst Wed Dec 22 13:58:29 2021 +0100 @@ -18,9 +18,9 @@ * `Download pre-compiled packages `__. * :ref:`Use Docker `. * On GNU/Linux, use precompiled packages for :ref:`Debian/Ubuntu - `, or for `openSUSE - `__ (courtesy of - Axel Braun). + ` (courtesy of DebianMed and Sébastien Jodogne), or + for `openSUSE `__ + (courtesy of Axel Braun). * On GNU/Linux, use our `LSB binaries `__ (Linux Standard Base), that should easily and immediately run on most distributions. Those @@ -31,6 +31,29 @@ * External contributors are also maintaining `Vagrant VM for Orthanc `__. +.. highlight:: bash + +Furthermore, if you are running Debian 9 (stretch), Debian 10 +(buster), Debian 11 (bullseye), Ubuntu 18.04 LTS (bionic) or Ubuntu +20.04 LTS (focal) on an **AMD64 architecture**, Sébastien Jodogne +maintains a **standalone Debian repository** that provides the latest +versions of the LSB binaries. For instance, here is how to install the +:ref:`Stone Web viewer ` on a barebone Docker setup:: + + # docker run --rm -t -i -p 8042:8042 -p 4242:4242 debian:9 + + $ apt update + $ DEBIAN_FRONTEND=noninteractive apt install -y software-properties-common wget curl nano gnupg apt-transport-https + + $ apt install --upgrade ca-certificates + $ wget -qO - https://debian.orthanc-labs.com/archive.key | apt-key add - + $ apt-add-repository "deb https://debian.orthanc-labs.com/ `grep VERSION_CODENAME /etc/os-release | cut -d'=' -f 2` main" + + $ apt clean && apt update + $ apt install orthanc-stone-webviewer + $ /etc/init.d/orthanc start + + .. _orthanc-explorer: