Skip to content

Instantly share code, notes, and snippets.

@ElijahLynn
Last active March 13, 2024 03:29
Show Gist options
  • Star 34 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save ElijahLynn/72cb111c7caf32a73d6f to your computer and use it in GitHub Desktop.
Save ElijahLynn/72cb111c7caf32a73d6f to your computer and use it in GitHub Desktop.
How to pipe to `docker exec` examples
# These examples assume you have a container currently running.
# 1 Pipe from a file
sudo docker exec --interactive CONTAINER_NAME /bin/bash < the_beginning.sh | tee the_beginning_output.txt`
#2a Pipe by piping
echo "echo This is how we pipe to docker exec" | sudo docker exec --interactive CONTAINER_NAME /bin/bash -
curl --head "http://info.cern.ch/hypertext/WWW/TheProject.html"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment