GItLab не развертывает приложение laravel на AWS ec2 - PullRequest
0 голосов
/ 09 февраля 2019

Я пытаюсь развернуть приложение Laravel на экземпляре AWS ec2.Я использую GitLab для управления кодом и конвейерного процесса.

Вот мой файл .gitlab-ci.yml.

    # Node docker image on which this would be run
image: node:8.9.0

#This command is run before actual stages start running
before_script:
  - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
  - npm install

stages:
  - test
  - deploy
  - production

#Production stage
production:   
   stage: production   
   before_script: 
   #generate ssh key   
     - mkdir -p ~/.ssh     
     - echo -e "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa     
     - chmod 600 ~/.ssh/id_rsa     
     - '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'   
   script:     

      - bash .gitlab-deploy.sh

   environment:     
      name: production     
      url: MY_HOST_IP_ADDRESS   
   when: manual
# lint and test are two different jobs in the same stage.
# This allows us to run these two in parallel and making build faste

А вот мой файл .gitlab-deploy.sh

#!/bin/bash
#Get servers list
set -f
string=$DEPLOY_SERVER
array=(${string//,/ })
#Iterate servers for deploy and pull last commit
for i in "${!array[@]}"; do
  echo "Deploying information to EC2 and Gitlab"
  echo "Deploy project on server ${array[i]}"
  ssh ubuntu@${array[i]} "cd /var/www/html && git pull origin"
done

Когда я нажимаю свой код, он обрабатывается нормально.Как вы можете видеть ниже изображение.enter image description here

После успешного процесса, когда я перечисляю каталог / var / www / html, он все еще пуст.Я использую Apache2 на Ubuntu.Я хочу развернуть свой код непосредственно в экземпляре AWS EC2.

Заранее спасибо!

...