Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This operation builds an image from a docker file.  It will not create or start a container.

...

Property Name

Property Code

Required

Description

Docker Server Address

FDDKR_DOCKER_SERVER

No

The IP address of the Docker server.  Required if Docker Unix Socker is not set.

Docker PortFDDKR_DOCKER_PORTNoThe port the Docker service is listening on.  Required if Docker Unix Socker is not set.
Docker Unix SocketFDDKR_UNIX_SOCKETNoThe socket the Docker daemon listens on. Required if Docker Server and Docker Port are not set.

...

The 'Docker Repository' input is not required to build the image but in order to make use of other docker functionality, like pushing to a registry, you need to specify a repository.  If forget you forgot to specify a repository on build you can tag the image from the command line later on and then push to a repositoryat any point.

docker tag %ImageId% %RepoName%:%tagName%

...