Skip to content

Instantly share code, notes, and snippets.

@chadly
Last active January 5, 2022 14:41
Show Gist options
  • Save chadly/69aa69658032cd6790e3f676b3e365d6 to your computer and use it in GitHub Desktop.
Save chadly/69aa69658032cd6790e3f676b3e365d6 to your computer and use it in GitHub Desktop.
Investigate a docker container's file system
# 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