-
Notifications
You must be signed in to change notification settings - Fork 4
CDeep3M Docker
haberlmatt edited this page Apr 14, 2020
·
7 revisions
Make sure you have Docker installed. The most recent docker images of CDeep3M Version 2 are available here: cdeep3m2-docker There are many different ways to run docker. Here are instructions to keep a docker container running.
docker images
REPOSITORY | TAG | IMAGE ID | CREATED | SIZE |
---|---|---|---|---|
ncmir/cdeep3m | latest | 23c87acf9c04 | 19 hours ago | 6.5GB |
Start a docker container that keeps running:
docker run -td --network=host -v /data:/data --gpus all --entrypoint "/usr/bin/top" 23c87acf9c04
(-v mount volume /data from your workstation into /data in the docker container)
Show running docker containers:
docker ps
CONTAINER ID | IMAGE | COMMAND | CREATED | STATUS | PORTS | NAMES |
---|---|---|---|---|---|---|
a9eef89b480e | 23c87acf9c04 | "/usr/bin/top" | 4 seconds ago | nervous_williams |
Enter the running docker container:
docker exec -it a9eef89b480e /bin/bash
This is your start screen:
root@*******: /home/cdeep3m#
Ready to start!
Once you are done processing. Leave the container.
exit
To stop the container:
docker kill a9eef89b480e