All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project uses the version of main tool as main version number .
- Rename arguments to reflect multiple container registries.
DOCKER_USERNAME
,DOCKER_PASSWORD
, andDOCKER_REGISTRY
are replaced byREGISTRY_USERNAME
,REGISTRY_TOKEN
, andREGISTRY_URL
.- Keyless signing with SigStore Cosign, Rekor and Fulcio.
DOCKER_USERNAME
,DOCKER_PASSWORD
, andDOCKER_REGISTRY
are deprecated. Please useREGISTRY_USERNAME
,REGISTRY_TOKEN
, andREGISTRY_URL
.
- #50 - Fix: Automatic push of README to docker hub is broken.
- #48 - Loop through entire array of push-branches
- [#34] - ** BREAKING ** Rename variables DOCKER_USERNAME, DOCKER_PASSWORD and DOCKER_REGISTRY
- Allow users to specify multiple branches to push to the artifact repository.
push-branches
- #47 -
push-branch
is now deprecated bypush-branches
. Will be removed in next major release.
- Allow users to specify specific dockerfile instead of path
The docker build
command is now being called from the root of the project
instead of the directory.
This has impact when your project has:
- Directories with multiple dockerfiles
- The dockerfile contains an
ADD
or aCOPY
command.
You now need to change the path to include the directory.
Example:
ADD /scripts/entrypoint.sh entrypoint.sh
becomes:ADD /6/java/scripts/entrypoint.sh entrypoint
- #38 - Auto update readme was not working anymore
- [#33] - DOCKER_ORGANIZATION is optional when other repository store is used.
- [#32] - DOCKER_REGISTRY should be an environment variable.
- Fix shellinter
- #28 - Update readme on docker.io
- #26 - REPO file is not correct.
v2 - 2020-03-18
- #17 - Now available as github action. No more git submodules.
- #21 - Support for different docker registries. Seperated image name from tags.
- #10 - Adjust paths for Github Actions runners
1.0.1 - 2019-03-05
- #3 - Fix error in docker_push.sh script related to buildpath
- #1 - Custom DOCKER_ORGANIZATION and GITHUB_ORGANIZATION.
- Initial start