Add marshal support to the Dockerfile

This commit is contained in:
Nathan Pemberton
2021-06-16 15:56:25 -04:00
parent ba1351c8b6
commit 83101cd679
2 changed files with 16 additions and 2 deletions

View File

@@ -13,7 +13,8 @@ Build and Deploy the Container
sudo docker tag <IMAGE_ID> <PATH_NAME>:tag . # to tag the image after the build (ex. 0.0.3)
sudo docker login # login into the account to push to
sudo docker push <PATH_NAME>:tag # to push to repo with tag
sudo docker run -it <IMAGE_ID> bash # to run an interactive version of the container
sudo docker run -it --privileged <IMAGE_ID> bash # to run an interactive version of the container
Path Names
----------