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

4 лет назад
4 лет назад
4 лет назад
4 лет назад
4 лет назад
4 лет назад
4 лет назад
4 лет назад
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. kind: pipeline
  2. type: docker
  3. name: build
  4. clone:
  5. disable: true
  6. steps:
  7. - name: clone
  8. image: docker:git
  9. environment:
  10. KEY:
  11. from_secret: DEPLOY_KEY
  12. PUBLIC:
  13. from_secret: DEPLOY_KEY_PUBLIC
  14. commands:
  15. - eval $(ssh-agent)
  16. - mkdir $HOME/.ssh && echo "$KEY" > $HOME/.ssh/id_rsa && chmod 600 $HOME/.ssh/id_rsa && echo "$PUBLIC" > $HOME/.ssh/id_rsa.pub
  17. - ssh-add $HOME/.ssh/id_rsa && ssh-keyscan -p 2222 -H 104.248.32.133 >> $HOME/.ssh/known_hosts && ssh-keyscan -p 2222 -H gitea.torrion-vault.xyz >> $HOME/.ssh/known_hosts
  18. - git clone ssh://git@gitea.torrion-vault.xyz:2222/Torrion/arbitry.git
  19. - ls -la
  20. # - name: build_php_base
  21. # image: plugins/docker
  22. # settings:
  23. # dockerfile: docker/php/Dockerfile
  24. # registry: localhost
  25. # repo: arbitry_php_base
  26. # dry_run: true
  27. # insecure: true
  28. # build_args:
  29. # PHP_VERSION: 7.4.4
  30. #
  31. # - name: build_php_fpm
  32. # image: plugins/docker
  33. # settings:
  34. # dockerfile: docker/php-fpm/Dockerfile
  35. # registry: localhost
  36. # repo: arbitry_php_fpm
  37. # dry_run: true
  38. # insecure: true
  39. # build_args:
  40. # PHP_VERSION: 7.4.4
  41. # BUILD_IMAGE: arbitry_php_base
  42. # depends_on:
  43. # - build_php_base
  44. # trigger:
  45. # status:
  46. # - success