@@ -4,23 +4,36 @@ OMERO.web Docker
4
4
A CentOS 7 based Docker image for OMERO.web.
5
5
6
6
7
- Running the image
8
- -----------------
7
+ Standalone image: omero-web-standalone
8
+ --------------------------------------
9
+
10
+ The quickest way to obtain a running OMERO.web server is to use
11
+ the [ standalone image] ( https://hub.docker.com/r/openmicroscopy/omero-web-standalone/ )
12
+ which uses the [ WhiteNoise package] ( http://whitenoise.evans.io/en/stable/ )
13
+ to avoid the need for Nginx.
9
14
10
15
To run the Docker image you can set a single OMERO.server to connect to by defining ` OMEROHOST ` :
11
16
12
17
docker run -d --name omero-web \
13
18
-e OMEROHOST=omero.example.org \
14
19
-p 4080:4080 \
15
- openmicroscopy/omero-web
20
+ openmicroscopy/omero-web-standalone
16
21
17
22
Alternative all configuration options can be set using environment variables, for example:
18
23
19
24
docker run -d --name omero-web \
20
25
-e CONFIG_omero_web_server__list='[["omero.example.org", 4064, "omero"]]' \
21
26
-e CONFIG_omero_web_debug=true \
22
27
-p 4080:4080 \
23
- openmicroscopy/omero-web
28
+ openmicroscopy/omero-web-standalone
29
+
30
+
31
+ Minimal OMERO.web image: omero-web
32
+ ----------------------------------
33
+
34
+ [ omero-web] ( https://hub.docker.com/r/openmicroscopy/omero-web/ )
35
+ is a minimal OMERO.web image which requires additional configuration for serving Django static files.
36
+ For example, you can use https://github.com/dpwrussell/omero-nginx-docker
24
37
25
38
26
39
Configuration
0 commit comments