Revert "Use env variable for docker network id, instead of github action input"

This reverts commit 23e2be876e.
This commit is contained in:
Jonatan Heyman
2021-01-28 17:00:10 +01:00
parent 23e2be876e
commit a42f5acd32
2 changed files with 5 additions and 3 deletions

View File

@@ -9,4 +9,4 @@ docker network ls
echo "$INPUT_RUN" | sed -e 's/\\n/;/g' > semicolon_delimited_script
exec docker run -v "/var/run/docker.sock":"/var/run/docker.sock" --network=$JOB_CONTAINER_NETWORK_ID $INPUT_OPTIONS --entrypoint=$INPUT_SHELL $INPUT_IMAGE -c "`cat semicolon_delimited_script`"
exec docker run -v "/var/run/docker.sock":"/var/run/docker.sock" --network=$INPUT_DOCKER_NETWORK $INPUT_OPTIONS --entrypoint=$INPUT_SHELL $INPUT_IMAGE -c "`cat semicolon_delimited_script`"