这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 14 additions & 5 deletions docs/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,12 @@ <h4 class="text-white mt-5">Dokku helps you build and manage the lifecycle of ap
<p class="line">
<span class="output"># download the installation script</span>
</p>
<br>
<p class="line">
<span class="prompt">$</span>
<span class="command">wget https://dokku.com/install/v0.30.0/bootstrap.sh</span>
<span class="command">wget https://dokku.com/bootstrap.sh</span>
</p>
<br>

<p class="line">
<span class="output"># run the installer</span>
</p>
Expand All @@ -127,22 +128,31 @@ <h4 class="text-white mt-5">Dokku helps you build and manage the lifecycle of ap
<span class="command">sudo DOKKU_TAG=v0.30.0 bash bootstrap.sh</span>
</p>
<br>

<p class="line">
<span class="output"># Configure your server domain</span>
</p>
<p class="line">
<span class="prompt">$</span>
<span class="command">dokku domains:set-global dokku.me</span>
</p>
<br>

<p class="line">
<span class="output"># and your ssh key to the dokku user</span>
</p>
<p class="line">
<span class="prompt">$</span>
<span class="command">echo "your-public-key-contents-here" | dokku ssh-keys:add admin</span>
<span class="command">PUBLIC_KEY="your-public-key-contents-here"</span>
</p>
<p class="line">
<span class="output"># # create your first app and you're off to the races!</span>
<span class="prompt">$</span>
<span class="command">echo "$PUBLIC_KEY" | dokku ssh-keys:add admin</span>
</p>
<br>

<p class="line">
<span class="output"># create your first app and you're off!</span>
</p>
<p class="line">
<span class="prompt">$</span>
Expand Down Expand Up @@ -705,7 +715,6 @@ <h2 class="fw-bolder">Support Us</h2>
var release = data[0];
const releaseSpan = document.getElementById("releaseVersion");
releaseSpan.innerText = release.name;
console.log(release);
});
}

Expand Down