Skip to content

Instantly share code, notes, and snippets.

@robinovitch61
Last active January 28, 2021 04:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robinovitch61/156b352225ef63798efb452d6fed06c0 to your computer and use it in GitHub Desktop.
Save robinovitch61/156b352225ef63798efb452d6fed06c0 to your computer and use it in GitHub Desktop.
  1. Clone the example repo and edit this part of this file
  omeroweb:
    image: "openmicroscopy/omero-web-standalone:5.6" <---- find the name and tag on dockerhub of the one you want
    environment:
      OMEROHOST: omeroserver
    networks:
      - omero
    ports:
      - "4080:4080"
  1. See if that works. Reset docker with:
cd omero-server-docker
docker-compose down # stops running containers
docker-compose rm # removes stopped containers
docker-compose up # brings up new containers from the images specified
docker-compose up -d # if you don't want logs
  1. See if image upload works

  2. See if the python script upload works

  3. See if running a hello world like script works, see if you can figure out where it's running and what python is running

Note: prune docker images:

docker system prune -af # something like this
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment