Skip to content

Commit

Permalink
Create step3tostep7.txt
Browse files Browse the repository at this point in the history
These are the steps from 3 to steps 7 in the tutorial named Docker for Data Scientist
  • Loading branch information
Adesoji1 authored Aug 20, 2024
1 parent a115ef2 commit 9761325
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Tutorials/step3tostep7.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
docker build -t data_science_image .
docker run -it data_science_image
docker build -t myimage:1.0
python script_1.py
docker exec -it <container_name> python /path/to/code_1.py
docker login
docker tag data_science_image collabnix12/data_science_image:v1.0
docker push collabnix12/data_science_image:v1.0
docker pull collabnix12/data_science_image:v1.0
docker run -it collabnix12/data_science_image:v1.0

0 comments on commit 9761325

Please sign in to comment.