Commit 6c759324 authored by Ruben ten Hove's avatar Ruben ten Hove
Browse files

Merge branch 'fix-readme' into 'master'

Fix README.md

See merge request ci/templates!57
parents dd7e5a8c c413b87b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -56,7 +56,7 @@ include:
  - project: 'ci/templates'
    file: 'docker/kaniko.yml'

kaniko:
docker:kaniko:
  variables:
    # Set to "false" to disable kaniko caching. See here: https://github.com/GoogleContainerTools/kaniko/blob/master/README.md#caching
    USE_CACHE: "true"
@@ -69,7 +69,7 @@ kaniko:
    DOCKERFILE: "mydockerfiles/myawesome.Dockerfile"  # Optional, defaults to just Dockerfile

another-build:
  extends: kaniko  # This will inherit the above as well
  extends: docker:kaniko  # This will inherit the above as well
  variables:
    DESTINATIONS: "--destination $CI_REGISTRY_IMAGE:my_custom_tag"
    DOCKERFILE: "mydockerfiles/mycustom.Dockerfile"