comparison Sphinx/source/users/docker.rst @ 336:a5f7fc9fb611

Orthanc 1.6.0
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 18 Mar 2020 15:15:39 +0100
parents 6cbcdb965ad3
children 011b01ccf52d
comparison
equal deleted inserted replaced
335:b7f045b23faa 336:a5f7fc9fb611
64 $ sudo docker pull jodogne/orthanc 64 $ sudo docker pull jodogne/orthanc
65 65
66 If more stability is required, you can select the official release of 66 If more stability is required, you can select the official release of
67 Orthanc to be run:: 67 Orthanc to be run::
68 68
69 $ sudo docker run -p 4242:4242 -p 8042:8042 --rm jodogne/orthanc:1.5.8 69 $ sudo docker run -p 4242:4242 -p 8042:8042 --rm jodogne/orthanc:1.6.0
70 70
71 Passing additional command-line options (e.g. to make Orthanc verbose) 71 Passing additional command-line options (e.g. to make Orthanc verbose)
72 can be done as follows (note the ``/etc/orthanc`` option that is 72 can be done as follows (note the ``/etc/orthanc`` option that is
73 required for Orthanc to find its configuration files):: 73 required for Orthanc to find its configuration files)::
74 74
113 deleted once the container stops). You can make the Orthanc database 113 deleted once the container stops). You can make the Orthanc database
114 persistent by mapping the ``/var/lib/orthanc/db`` folder of the 114 persistent by mapping the ``/var/lib/orthanc/db`` folder of the
115 container to some path in the filesystem of your Linux host, e.g.:: 115 container to some path in the filesystem of your Linux host, e.g.::
116 116
117 $ mkdir /tmp/orthanc-db 117 $ mkdir /tmp/orthanc-db
118 $ sudo docker run -p 4242:4242 -p 8042:8042 --rm -v /tmp/orthanc-db/:/var/lib/orthanc/db/ jodogne/orthanc:1.5.8 118 $ sudo docker run -p 4242:4242 -p 8042:8042 --rm -v /tmp/orthanc-db/:/var/lib/orthanc/db/ jodogne/orthanc:1.6.0
119 119
120 120
121 Whole-slide imaging support 121 Whole-slide imaging support
122 --------------------------- 122 ---------------------------
123 123
234 * The Orthanc source code can be found in folder ``/root/orthanc``. 234 * The Orthanc source code can be found in folder ``/root/orthanc``.
235 235
236 * The build artifacts can be found in folder ``/root/orthanc/Build``. 236 * The build artifacts can be found in folder ``/root/orthanc/Build``.
237 237
238 * This command launches the mainline version. To start a released version, 238 * This command launches the mainline version. To start a released version,
239 use e.g. ``jodogne/orthanc-debug:1.5.8``. 239 use e.g. ``jodogne/orthanc-debug:1.6.0``.