--- kind: 'pipeline' name: 'build' type: 'kubernetes' steps: # build and publish - image: 'plugins/docker' name: 'publish' pull: 'always' network_mode: 'host' settings: # registery and repos registry: 'docker.io' cache_from: 'rakepanorama/ansible-deployment' repo: 'rakepanorama/ansible-deployment' # build stuff dockerfile: 'Dockerfile.linux.amd64' daemon_off: 'true' # authentication username: from_secret: 'docker_username' password: from_secret: 'docker_password' # tags tags: - 'latest' - 'v17'