Total Pageviews

Wednesday, 19 September 2018

在debian/ubuntu vps上,安装dokku

wget -nv -O - https://get.docker.com/ | sh

wget -nv -O - https://packagecloud.io/gpg.key | apt-key add -

 export SOURCE="https://packagecloud.io/dokku/dokku/ubuntu/"

 export OS_ID="$(lsb_release -cs 2> /dev/null || echo "trusty")"

echo "deb $SOURCE $OS_ID main" | tee /etc/apt/sources.list.d/dokku.list

apt-get update

apt-get install dokku

dokku plugin:install-dependencies --core
(then go to your server's IP and follow the web installer)

from http://dokku.viewdocs.io/dokku/#install-apt

然后看这里http://dokku.viewdocs.io/dokku~v0.12.12/deployment/application-deployment/
------------------------------

A docker-powered PaaS that helps you build and manage the lifecycle of applications http://dokku.viewdocs.io/dokku/

dokku,
Docker powered mini-Heroku. The smallest PaaS implementation you've ever seen.

from https://github.com/dokku/dokku

No comments:

Post a Comment