Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
- kind: pipeline
- type: docker
- name: build
-
- clone:
- disable: true
-
- steps:
- - name: clone
- image: alpine/git
- commands:
- - git clone https://gitea.torrion-vault.xyz/Torrion/arbitry.git .
- - git checkout $DRONE_COMMIT
-
- - 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
|