starter-docker-github-actions/entrypoint.sh

37 lines
936 B
Bash
Raw Normal View History

#!/bin/bash
2021-07-14 17:15:43 +07:00
#### Current working directory is: /github/workspace ####
WORKDIR=$(pwd)
2021-07-14 17:21:39 +07:00
echo "Workdir => ${WORKDIR}"
if [ ! -z $INPUT_USERNAME ];
then echo $INPUT_PASSWORD | docker login $INPUT_REGISTRY -u $INPUT_USERNAME --password-stdin
fi
echo "$INPUT_RUN" | sed -e 's/\\n/;/g' > semicolon_delimited_script
if [ ! -z $INPUT_DOCKER_NETWORK ];
then INPUT_OPTIONS="$INPUT_OPTIONS --network $INPUT_DOCKER_NETWORK"
fi
2021-03-26 21:26:00 +07:00
if [ -z $INPUT_SHELL ];
2021-03-26 21:45:10 +07:00
then INPUT_SHELL=sh
2021-03-26 21:26:00 +07:00
fi
if [ -z $INPUT_IMAGE ];
2021-07-14 17:10:48 +07:00
then INPUT_IMAGE=cubetiq/calpine-docker
fi
2021-03-26 21:26:00 +07:00
if [ -z $semicolon_delimited_script ];
then semicolon_delimited_script="echo $(whoami)"
fi
2021-07-14 17:32:39 +07:00
echo "My name is: $(whoami)"
echo "Start executing docker..."
2021-07-14 17:56:56 +07:00
mkdir hello
2021-07-14 17:55:02 +07:00
2021-07-14 17:56:56 +07:00
echo "Hello World" > hello/hello.txt
2021-07-14 18:00:41 +07:00
docker run --workdir /github/workspace -v "$(pwd)":"/github/workspace" -v "/var/run/docker.sock":"/var/run/docker.sock" --entrypoint=sh $INPUT_IMAGE -c "docker version; docker ps; pwd; ls; ls /"