Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

4 лет назад
4 лет назад
4 лет назад
12345678910111213141516171819202122232425262728293031323334353637
  1. kind: pipeline
  2. type: docker
  3. name: build
  4. clone:
  5. git:
  6. image: plugins/git
  7. skip_verify: true
  8. steps:
  9. - name: build_php_base
  10. image: plugins/docker
  11. settings:
  12. dockerfile: docker/php/Dockerfile
  13. registry: localhost
  14. repo: arbitry_php_base
  15. dry_run: true
  16. insecure: true
  17. build_args:
  18. PHP_VERSION: 7.4.4
  19. - name: build_php_fpm
  20. image: plugins/docker
  21. settings:
  22. dockerfile: docker/php-fpm/Dockerfile
  23. registry: localhost
  24. repo: arbitry_php_fpm
  25. dry_run: true
  26. insecure: true
  27. build_args:
  28. PHP_VERSION: 7.4.4
  29. BUILD_IMAGE: arbitry_php_base
  30. depends_on:
  31. - build_php_base
  32. trigger:
  33. status:
  34. - success