All checks were successful
continuous-integration/drone/push Build is passing
22 lines
524 B
Jsonnet
22 lines
524 B
Jsonnet
[
|
|
{
|
|
kind: 'pipeline',
|
|
type: 'docker',
|
|
name: 'docker-gitea',
|
|
steps: [
|
|
{
|
|
name: 'build',
|
|
image: 'plugins/docker',
|
|
settings: {
|
|
tags: ['latest', '${DRONE_COMMIT_SHA:0:8}'],
|
|
dockerfile: 'Dockerfile',
|
|
registry: 'gitea.pb42.de',
|
|
repo: 'gitea.pb42.de/matthias/moveoncomplete',
|
|
config: { from_secret: 'dockerconfigjson' },
|
|
},
|
|
},
|
|
],
|
|
trigger: { event: ['push'] },
|
|
image_pull_secrets: ['dockerconfigjson'],
|
|
},
|
|
] |