Merge pull request #1150 from sw360cab/feature-docker-run-cmd

Add Feature to leverage custom command inside Docker.#Run
This commit is contained in:
Solomon Hykes 2022-02-10 22:39:23 -08:00 committed by GitHub
commit b52684ff85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -214,6 +214,9 @@ import (
// Container name
name?: dagger.#Input & {string}
// Custom Command overriding entrypoint of the Image
containerCommand?: dagger.#Input & {string}
// Recreate container?
recreate: dagger.#Input & {bool | *true}
@ -230,6 +233,7 @@ import (
#command: #"""
# Run detach container
OPTS=""
CMD=""
if [ ! -z "$CONTAINER_NAME" ]; then
OPTS="$OPTS --name $CONTAINER_NAME"
@ -250,7 +254,11 @@ import (
OPTS="$OPTS -p $CONTAINER_PORTS"
fi
docker container run -d $OPTS "$IMAGE_REF"
if [ ! -z "$CONTAINER_CMD" ]; then
CMD="$CONTAINER_CMD"
fi
docker container run -d $OPTS "$IMAGE_REF" $CMD
"""#
run: #Command & {
@ -278,6 +286,11 @@ import (
if ports != _|_ {
CONTAINER_PORTS: strings.Join(ports, " -p ")
}
if containerCommand != _|_ {
CONTAINER_CMD: containerCommand
}
}
}
}