2023-04-19 13:19:40 +00:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build_and_publish_tag
|
|
|
|
image: plugins/docker:linux-amd64
|
|
|
|
settings:
|
|
|
|
force_tag: true
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
registry: docker.asperti.com
|
|
|
|
repo: docker.asperti.com/paspo/glpi
|
|
|
|
context: .
|
|
|
|
dockerfile: ./Dockerfile
|
|
|
|
build_args:
|
2023-07-11 09:25:43 +00:00
|
|
|
- GLPI_VERSION=10.0.9
|
2023-04-19 13:19:40 +00:00
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
tags:
|
|
|
|
- latest
|
|
|
|
- ${DRONE_TAG}
|
|
|
|
- ${DRONE_SEMVER_MAJOR}.${DRONE_SEMVER_MINOR}
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- tag
|
|
|
|
|
|
|
|
- name: build_and_publish
|
|
|
|
image: plugins/docker:linux-amd64
|
|
|
|
settings:
|
|
|
|
force_tag: true
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
registry: docker.asperti.com
|
|
|
|
repo: docker.asperti.com/paspo/glpi
|
|
|
|
context: .
|
|
|
|
dockerfile: ./Dockerfile
|
|
|
|
build_args:
|
2023-07-11 09:25:43 +00:00
|
|
|
- GLPI_VERSION=10.0.9
|
2023-04-19 13:19:40 +00:00
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
tags:
|
|
|
|
- latest
|
|
|
|
when:
|
|
|
|
branch:
|
|
|
|
- master
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- cron
|