Last active
January 5, 2022 14:41
-
-
Save chadly/69aa69658032cd6790e3f676b3e365d6 to your computer and use it in GitHub Desktop.
Investigate a docker container's file system
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# build the container | |
# consider removing the entrypoint/cmd from the dockerfile if the container errors and stops running | |
docker build -t ncc:testing -f Dockerfile-build --target runtime . | |
# run the container | |
docker run --name wtf -itd ncc:testing | |
# connect to shell inside the running container | |
docker exec -ti wtf /bin/sh | |
# OR ############################### | |
# copy file from (running or stopped) container | |
docker cp wtf:/var/www/app/current/ncc/index.js ncc/index.js |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment