1234567891011121314151617181920212223242526272829303132333435 |
- pipeline:
- build:
- image: docker.infra.flowdat.com/fd3/sf-php:latest
- pull: true
- commands:
- - env
- - php -v
- docker_kea_1.3.0:
- repo : docker.infra.flowdat.com/fd3/kea-1.3.0
- image: plugins/docker
- pull: true
- email: luciano@interlink.com.ar
- registry: docker.infra.flowdat.com
- dockerfile: 1.3.0/Dockerfile
- tag:
- - latest
- - "1.3.0"
- when:
- event: [pull_request, push, tag]
- branch: master
- docker_kea_1.4.0:
- repo : docker.infra.flowdat.com/fd3/kea-1.4.0
- image: plugins/docker
- pull: true
- email: luciano@interlink.com.ar
- registry: docker.infra.flowdat.com
- dockerfile: 1.4.0/Dockerfile
- tag:
- - latest
- - "1.4.0"
- when:
- event: [pull_request, push, tag]
- branch: master
|