Skip to content

Instantly share code, notes, and snippets.

@mishrsud
Last active August 22, 2019 02:44
Show Gist options
  • Save mishrsud/f36143ac26d79a70e8989940aac11ddf to your computer and use it in GitHub Desktop.
Save mishrsud/f36143ac26d79a70e8989940aac11ddf to your computer and use it in GitHub Desktop.
Docker attach execute shell command
# PS: If running Linux containers on Windows, the command shell must be running as admin
# Attach to the default shell of a running container
sudo docker attach 665b4a1e17b6
# Access a shell and run custom commands inside a container
# 665b4a1e17b6 is the ID of the container obtained from docker ps
sudo docker exec -i -t 665b4a1e17b6 /bin/bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment