7
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

dokku で root ドメインをデプロイする

Posted at

dokku 便利だね。Digital Ocian に Ubuntu 入れて、Docker & dokku で自分だけの Heroku ライクな環境でサービスを作るのは良いものだ。

そこで、いよいよサービスインという場面ドメインをあてる作業を行う。
まず、Digital Ocean の IP へ DNS を切り替えておく。

例えば、example.com としよう。
dev.example.com と、example.com のデプロイを説明。
だが、ルートドメインがうまくいかない事があったので、こちらで解決。

サブドメイン (dev.example.com) をデプロイする

$ git remote add dev-hoge dokku@example.com:dev
$ git push dev-hoge master
:
:
remote: -----> Application deployed:
remote:           http://dev.example.com

ルートドメイン (example.com) をデプロイする

$ git remote add hoge dokku@example.com:example.com
$ git push hoge master
:
:
remote: -----> Application deployed:
remote:           http://example.com

注目すべきは remote add の場面

$ git remote add hoge dokku@[ルートドメイン]:[ルートドメイン]

では、よいサービスインを!

7
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?