Last active
June 12, 2023 21:28
-
-
Save mbreese/e6d4b57867ca440341b5 to your computer and use it in GitHub Desktop.
Running docker with a HEREDOC to script the commands to run inside the container.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Alternative without the use of "bash -s"
$ cat <<"EOF" | docker run --rm -i --name ${DOCKER_CONTAINER_NAME} ${IMAGE_NAME}
date > foo
echo 'foo' >> foo
cat /etc/redhat-release >> foo
whoami >> foo
EOF
with docker-compose and heredoc syntax
cat <<"EOF" | docker-compose exec -T app /bin/bash -
cat /etc/os-release
EOF
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great work
Not too sure how to use this with an if, should it look like this?