Skip to content

Commit 5dafc14

Browse files
committed
Initial commit
1 parent 05bf4f5 commit 5dafc14

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

pull_all.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/usr/bin/env python
2+
#
3+
# Pull all of the PLplot docker images.
4+
#
5+
6+
import subprocess
7+
8+
import image_names
9+
10+
for elt in image_names.names:
11+
cmd = ["docker", "pull", elt[0]]
12+
subprocess.call(cmd)

0 commit comments

Comments
 (0)