Skip to content

Commit 9761325

Browse files
authoredAug 20, 2024··
Create step3tostep7.txt
These are the steps from 3 to steps 7 in the tutorial named Docker for Data Scientist
1 parent a115ef2 commit 9761325

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
 

‎Tutorials/step3tostep7.txt

+10
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)
Please sign in to comment.