Skip to content
This repository has been archived by the owner on Jun 16, 2021. It is now read-only.

Latest commit

 

History

History
45 lines (35 loc) · 1.07 KB

deployment.md

File metadata and controls

45 lines (35 loc) · 1.07 KB
author(s)
M. Serhat Dundar (@msdundar)

Dokku

Nadiren dahi olsa uygulamanın deploy edildiği makinaya operatör olarak erişmeniz gerekebilir. Makinaya erişim sağlamadan önce geçerli bir sebebiniz olduğundan emin olun. Ne yaptığınızdan emin değilseniz sistem grubu ile iletişime geçin. Dokku instance'ına erişmenin sıkça kullanılan iki yolu vardır.

dokku-cli ile (tercih edilen)

gem install dokku-cli
git remote add beta [email protected]:nokul

Daha sonra --remote-beta ile komutları çalıştırabilirsiniz:

dokku run rails c --remote=beta
dokku run rake some_namespace:some_rake_task --remote=beta

Operatör olarak

ssh [email protected]
dokku enter nokul web

Local Dokku Deployment

vagrant up paas --provider=virtualbox
RAILS_MASTER_KEY=xxxxxxxxx vagrant provision paas # only on the first deploy
git push --no-verify dokku <branch_adı>:master
dokku run rails db:seed SAMPLE_DATA=true