hpc:docker
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
hpc:docker [2015/01/30 16:37] – created jchilders | hpc:docker [2015/05/20 19:52] (current) – jchilders | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Using Docker ====== | ====== Using Docker ====== | ||
+ | |||
+ | LHC Docker images: | ||
+ | https:// | ||
==== Some initial tests ==== | ==== Some initial tests ==== | ||
Line 6: | Line 9: | ||
I played around a little and located an SLC docker image. In a fresh terminal: | I played around a little and located an SLC docker image. In a fresh terminal: | ||
- | < | + | < |
-> | -> | ||
-> | -> | ||
Line 29: | Line 32: | ||
79924a46c804: | 79924a46c804: | ||
Status: Downloaded newer image for cern/ | Status: Downloaded newer image for cern/ | ||
+ | -> docker pull cern/ | ||
-> docker images | -> docker images | ||
REPOSITORY | REPOSITORY | ||
cern/ | cern/ | ||
cern/ | cern/ | ||
+ | cern/ | ||
-> docker run cern/ | -> docker run cern/ | ||
Linux f4eea7db246b 3.16.7-tinycore64 #1 SMP Tue Dec 16 23:03:39 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux | Linux f4eea7db246b 3.16.7-tinycore64 #1 SMP Tue Dec 16 23:03:39 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux | ||
+ | </ | ||
+ | |||
+ | As a test I installed ROOT via yum into the image. The first command here starts an interactive container. | ||
+ | |||
+ | <code console> | ||
+ | -> docker run -i -t cern/ | ||
+ | [root@19035251353f /]# yum install root.x86_64 | ||
+ | . | ||
+ | . < yum installation STDOUT goes here > | ||
+ | . | ||
+ | [root@19035251353f /]# root -b | ||
+ | ******************************************* | ||
+ | * * | ||
+ | * W E L C O M E to R O O T * | ||
+ | * * | ||
+ | * | ||
+ | * * | ||
+ | * You are welcome to visit our Web site * | ||
+ | * http:// | ||
+ | * * | ||
+ | ******************************************* | ||
+ | |||
+ | ROOT 5.34/20 (heads/ | ||
+ | |||
+ | CINT/ROOT C/C++ Interpreter version 5.18.00, July 2, 2010 | ||
+ | Type ? for help. Commands must be C++ statements. | ||
+ | Enclose multiple statements between { }. | ||
+ | root [0] .q | ||
+ | [root@19035251353f /]# exit | ||
+ | -> docker ps -l | ||
+ | CONTAINER ID IMAGE COMMAND | ||
+ | 19035251353f | ||
+ | -> docker commit -m " | ||
+ | e0ebe08a3fce057499fcefdf6132c7e57aca605a1830f0abc84f97e431094cb2 | ||
+ | </ | ||
+ | |||
+ | Now I have my own SLC6.5 container with ROOT 5.34 installed. | ||
+ | |||
+ | Next I played with trying to run a root script so I made one: | ||
+ | <code bash> | ||
+ | mkdir vlocal | ||
+ | vim vlocal/ | ||
+ | </ | ||
+ | |||
+ | <code c | root_test.C> | ||
+ | #include < | ||
+ | #include < | ||
+ | |||
+ | int root_test(void){ | ||
+ | | ||
+ | |||
+ | | ||
+ | |||
+ | | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | Then I wanted my container to mount my local directory and use this file: | ||
+ | |||
+ | <code console> | ||
+ | -> docker run --volume=$PWD/ | ||
+ | ******************************************* | ||
+ | * * | ||
+ | * W E L C O M E to R O O T * | ||
+ | * * | ||
+ | * | ||
+ | * * | ||
+ | * You are welcome to visit our Web site * | ||
+ | * http:// | ||
+ | * * | ||
+ | ******************************************* | ||
+ | |||
+ | ROOT 5.34/20 (heads/ | ||
+ | |||
+ | CINT/ROOT C/C++ Interpreter version 5.18.00, July 2, 2010 | ||
+ | Type ? for help. Commands must be C++ statements. | ||
+ | Enclose multiple statements between { }. | ||
+ | |||
+ | Processing / | ||
+ | Hello World | ||
+ | (int)0 | ||
</ | </ |
hpc/docker.1422635827.txt.gz · Last modified: 2015/01/30 16:37 by jchilders