reproducible container with 57 experiment factory experiments
963
experiments example
For all of these commands, the experiment portal will be available at localhost (127.0.0.1) and data saved to /scif/data in the container, which can (but doesn't need to be) mapped to the host.
To start the container:
docker run -p 80:80 vanessa/expfactory-experiments start
To run in detached mode (and you must use docker stop to stop instead of Control + C
docker run -d -p 80:80 vanessa/expfactory-experiments start
To map data in the container to a folder on the host, (/tmp/data):
docker run -p 80:80 \
-v /tmp/data:/scif/data \
vanessa/expfactory-experiments start
and all together now!
docker run -d -p 80:80 \
-v /tmp/data:/scif/data \
vanessa/expfactory-experiments start
You can use --name to give your container a name to stop (instead of needing the id) or do docker ps to get the 12 digit alphanumeric character to stop:
docker stop <containerid>
Don't forget to remove containers and images (docker rm and docker rmi respectively) after they are stopped, or else Docker will eat your computer. We don't want that.
Content type
Image
Digest
Size
357.4 MB
Last updated
over 8 years ago
docker pull vanessa/expfactory-experiments