Skip to content

Instantly share code, notes, and snippets.

@anastasiya29
Created January 29, 2021 16:21
Show Gist options
  • Select an option

  • Save anastasiya29/1323f54c915c6df9439702d31e1e3a03 to your computer and use it in GitHub Desktop.

Select an option

Save anastasiya29/1323f54c915c6df9439702d31e1e3a03 to your computer and use it in GitHub Desktop.
Helpful Docker container commands

Helpful Docker container commands

Remoting into the container

For linux containers

docker exec -i -t [container name] sh

For windows containers

docker exec -i -t [container name] powershell

The container name is the one from the Names column in: docker ps

Copy files between contain and local system

docker container cp [OPTIONS] ContainerName:SRC_PATH DEST_PATH|-
docker cp [OPTIONS] SRC_PATH|- ContainerName:DEST_PATH

Troubleshooting containers

Use iisreset -stop to fully restart IIS (the -stop is important)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment