Skip to content

Instantly share code, notes, and snippets.

@asanchez75
Forked from mbreese/docker-heredoc-snippet
Created April 2, 2019 13:55
Show Gist options
  • Save asanchez75/1a56b9fe0dd288d87a95bc055248d08a to your computer and use it in GitHub Desktop.
Save asanchez75/1a56b9fe0dd288d87a95bc055248d08a to your computer and use it in GitHub Desktop.
Running docker with a HEREDOC to script the commands to run inside the container.
docker run -v /Users/mbreese/tmp:/tmp1 -w /tmp1 -i centos:7 /bin/bash -s <<EOF
date > foo
echo 'foo' >> foo
cat /etc/redhat-release >> foo
whoami >> foo
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment