Skip to content

Commit cdfd53b

Browse files
alancwootexnixe
authored andcommitted
Update cookbook-recipe.txt
Update dokku install command, add note to check docs for latest updates
1 parent f2a8f71 commit cdfd53b

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

content/docs/2_cookbook/9_setup/0_git-based-deployment-with-dokku/cookbook-recipe.txt

+6-4
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,11 @@ According to the (link: https://dokku.com/docs/getting-started/installation/#wha
3333

3434
Behind the scenes, Dokku makes use of Docker containerization to run any number of applications on your server. It allows you to essentially create your own PaaS or something like (link: https://www.heroku.com/ text: Heroku) where you can deploy and manage your apps. In fact, Dokku will make use of the official (link: https://elements.heroku.com/buildpacks/heroku/heroku-buildpack-php text: Heroku PHP Buildpack) to run your Kirby site.
3535

36+
For the most recent Dokku installation requirements/commands, please double check https://dokku.com/docs/getting-started/installation/
37+
3638
## Prerequisites and Requirements
3739
- Access to cloud servers such as (link: https://www.hetzner.com/ text: Hetzner) or (link: https://digitalocean.com text: Digital Ocean)
38-
- A fresh installation of Ubuntu 18.04/20.04 x64, Debian 9+ x64 or CentOS 7 x64 (experimental) with the FQDN set
40+
- A fresh installation of Ubuntu 20.04/22.04 x64, Debian 10+ x64 or CentOS 7 x64 (experimental) with the FQDN set
3941
- At least 1 GB of system memory. (link: https://dokku.com/docs/getting-started/advanced-installation/#vms-with-less-than-1gb-of-memory text: Workaround for less than 1GB)
4042
- Basic familiarity with Linux and the command line
4143
- (link: https://git-scm.com/book/en/v2/Getting-Started-Installing-Git text: Git) and (link: https://getcomposer.org/doc/00-intro.md#installation-linux-unix-macos text: composer) installed locally
@@ -57,8 +59,8 @@ Start a fresh cloud server instance (in my case, I will be using Ubuntu 20.04 x6
5759
```bash
5860
# ON SERVER
5961
# for debian systems, installs Dokku via apt-get
60-
wget https://raw.githubusercontent.com/dokku/dokku/v0.26.6/bootstrap.sh;
61-
sudo DOKKU_TAG=v0.26.6 bash bootstrap.sh
62+
wget -NP . https://dokku.com/install/v0.33.5/bootstrap.sh
63+
sudo DOKKU_TAG=v0.33.5 bash bootstrap.sh
6264
```
6365

6466
Then connect your SSH key (i.e. the public key on your local machine, or wherever you plan to deploy from) and set up the domain accordingly.
@@ -440,4 +442,4 @@ By setting up different workflows, you could choose to set up certain branches t
440442

441443
----
442444

443-
Tags: deployment
445+
Tags: deployment

0 commit comments

Comments
 (0)