Skip to content

Commit

Permalink
Merge pull request #2134 from will-moore/omeroweb_docker_py3_config_fix
Browse files Browse the repository at this point in the history
Fix docker_appdir path in omeroweb CreateApp.rst
  • Loading branch information
jburel authored Jul 15, 2020
2 parents cdaee53 + 104b381 commit 34335df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions omero/developers/Web/CreateApp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ python can import our ``minimal_webapp`` module.
$ appdir=$(pwd)/minimal-webapp/minimal_webapp

# Location within Docker instance we want to link the app, so it can be imported.
$ docker_appdir=/opt/omero/web/venv/lib/python2.7/site-packages/minimal_webapp
$ docker_appdir=/opt/omero/web/venv3/lib/python3.6/site-packages/minimal_webapp

# This example config file installs "minimal_webapp". See the file for more details.
$ config=$(pwd)/config.omero
Expand All @@ -101,8 +101,8 @@ that OMERO.web is starting and the static files from your app are being included
::

...
Copying '/opt/omero/web/venv/lib/python2.7/site-packages/minimal_webapp/static/minimal_webapp/app.css'
Copying '/opt/omero/web/venv/lib/python2.7/site-packages/minimal_webapp/static/minimal_webapp/app.js'
Copying '/opt/omero/web/venv3/lib/python3.6/site-packages/minimal_webapp/static/minimal_webapp/app.css'
Copying '/opt/omero/web/venv3/lib/python3.6/site-packages/minimal_webapp/static/minimal_webapp/app.js'
...
Starting OMERO.web...

Expand Down

0 comments on commit 34335df

Please sign in to comment.