We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a115ef2 commit 9761325Copy full SHA for 9761325
Tutorials/step3tostep7.txt
@@ -0,0 +1,10 @@
1
+docker build -t data_science_image .
2
+docker run -it data_science_image
3
+docker build -t myimage:1.0
4
+python script_1.py
5
+docker exec -it <container_name> python /path/to/code_1.py
6
+docker login
7
+docker tag data_science_image collabnix12/data_science_image:v1.0
8
+docker push collabnix12/data_science_image:v1.0
9
+docker pull collabnix12/data_science_image:v1.0
10
+docker run -it collabnix12/data_science_image:v1.0
0 commit comments