...
Input Name | Input Code | Required | Description |
---|---|---|---|
Docker File | FDDKR_INP_DOCKER_FILE | No | The path to the Docker File to build. If empty Dockerfile is used as the name, and it is searched as specified in the next line. If an absolute path is given, it is used. Otherwise the file is checked for relative to the FD_TEMP_DIR and any checkout folders. |
Docker File Arguments | FDDKR_INP_DOCKER_FILE_ARGS | No | The docker file arguments to use. These are the ARG instructions in the docker file. KeyValue pairs should be separated by "|" and the key and value should be separated by ",". Example: key1,value|key2,value|key3,value |
Docker Repository | FDDKR_INP_REPOSITORY | No | The image name/repository to create the image in. This is the REPOSITORY column when running the command 'docker images'. The image repository should be in lowercase |
Image Tag | FDDKR_INP_IMAGE_TAG | No | The tag to apply to the image. Use comma separated values to specify multiple tags. Example: 'latest, 1.2.3'. |
...