- kind: pipeline
- type: docker
- name: build
-
- clone:
- git:
- image: plugins/git
- skip_verify: true
-
- steps:
- - name: build_php_base
- image: plugins/docker
- settings:
- dockerfile: docker/php/Dockerfile
- registry: localhost
- repo: arbitry_php_base
- dry_run: true
- insecure: true
- build_args:
- PHP_VERSION: 7.4.4
-
- - name: build_php_fpm
- image: plugins/docker
- settings:
- dockerfile: docker/php-fpm/Dockerfile
- registry: localhost
- repo: arbitry_php_fpm
- dry_run: true
- insecure: true
- build_args:
- PHP_VERSION: 7.4.4
- BUILD_IMAGE: arbitry_php_base
- depends_on:
- - build_php_base
- trigger:
- status:
- - success
|