Skip to content

Commit

Permalink
Merge pull request #10 from sbesson/omero-web_major_version
Browse files Browse the repository at this point in the history
Use latest OMERO versions for the default compose image
  • Loading branch information
sbesson authored Apr 9, 2021
2 parents 94a6a77 + 40411b2 commit a5bb188
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ The initial password can be changed in [`docker-compose.yml`](docker-compose.yml

## Run

First pull the latest major versions of the containers:

docker-compose pull

Then start the containers:

docker-compose up -d
docker-compose logs -f

Expand Down
8 changes: 6 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ services:
- "database:/var/lib/postgresql/data"

omeroserver:
image: "openmicroscopy/omero-server:5.6"
# This container uses the tag for the latest server release of OMERO 5
# To upgrade to the next major release, increment the major version number
image: "openmicroscopy/omero-server:5"
environment:
CONFIG_omero_db_host: database
CONFIG_omero_db_user: omero
Expand All @@ -30,7 +32,9 @@ services:
- "omero:/OMERO"

omeroweb:
image: "openmicroscopy/omero-web-standalone:5.6"
# This container uses the tag for the latest web release of OMERO 5
# To upgrade to the next major release, increment the major version number
image: "openmicroscopy/omero-web-standalone:5"
environment:
OMEROHOST: omeroserver
networks:
Expand Down

0 comments on commit a5bb188

Please sign in to comment.