Tags: palletops/lein-uberimage
Tags
Release 0.4.0 - Add support for https and auth identity Allows use of DOCKER_CERT_PATH for TLS credentials to use for DOCKER_HOST, as used by boot2docker. This also allows for DOCKER_AUTH=identity, as used by nodes started by docker machine. - Remove core.async dependency Fixes #21 - Use DOCKER_CERT_PATH to find client cert - Use DOCKER_HOST to specify endpoint For consistency with boot2docker, use the DOCKER_HOST environment variable to specify the endpoint. DOCKER_ENDPOINT will still override DOCKER_HOST. - Show the tag in 'Built image' output, if supplied.
Release 0.3.0 - Include additional instructions in Dockerfiles Allow the insertion of additional Dockerfile instructions The :instructions value is taken from the :uberimage options map in project.clj and specifies a list of Dockerfile instructions to be inserted immediately after the FROM instruction at the start of the Dockerfile.
Release 0.1.4 - Specify command and extra files in project.clj Allows config to be given in project.clj with the form : :uberimage {:cmd ["/bin/dash" "/myrunscript" "param1" "param2"] :files {"myrunscript" "docker/myrunscript"}} - The :cmd value maps directly to a Dockerfile CMD statement - The :files value is a map of additional files to be copied into the docker image. Keys are docker image target paths and values are lein project source paths This permits more flexibility in starting the containerized program, allowing things such as configuring extra environment with a script. - Add a CONTRIBUTING.md file