- 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"
- 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
-
See if image upload works
-
See if the python script upload works
-
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