Commit 38e6ea83 authored by Alexandr Dzehil's avatar Alexandr Dzehil 😎

Change ci file

parent c549304f
Pipeline #7124 failed with stage
in 6 seconds
image: dokku/ci-docker-image
stages:
- deploy
variables:
GIT_DEPTH: 0
APP_NAME: cp-video
APP_URL: 137.184.39.49
deploy:
stage: deploy
script:
- mkdir -p ~/.ssh
- echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa
- chmod 600 ~/.ssh/id_rsa
- ssh-keyscan ваш_сервер_IP >> ~/.ssh/known_hosts
- git remote add dokku root@137.184.39.49:cp-video
- git push dokku main
- ssh root@137.184.39.49 "dokku ps:scale cp-video web=1 worker=2 beat=1"
environment:
name: stages
url: https://clutchpoints-video-test.4taps.me/
tags:
- dokku
only:
- main
- dev
variables:
GIT_REMOTE_URL: ssh://dokku@${APP_URL}:22/${APP_NAME}
DOKKU_DEPLOY_BRANCH: dev
before_script:
- eval $(ssh-agent -s)
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
script:
- dokku-deploy
- ssh dokku@${APP_URL} ps:restart ${APP_NAME}
after_script:
- dokku-unlock
\ No newline at end of file
web: gunicorn cp_video.wsgi:application
worker: celery -A cp_video worker -l INFO
beat: celery -A cp_video beat
release: django-admin migrate --no-input && django-admin collectstatic --no-input
release: django-admin migrate --no-input && django-admin collectstatic --no-input && dokku ps:scale sites beat=1 worker=1
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment