add basic script to manage starting docker image.

This commit is contained in:
jowj 2018-05-01 17:37:36 -05:00
parent 389887c5f7
commit c560e58957

8
colove.py Normal file
View File

@ -0,0 +1,8 @@
import subprocess
def dockerrun():
args = ['docker', 'run', '-it', '--name', 'mst3k','colove:latest']
subprocess.Popen(args)
if __name__ == '__main__':
dockerrun()