Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

📝 Change Docker installation steps in "Installing CapRover on Hetzner Cloud" #909

Merged
merged 1 commit into from
Aug 20, 2024
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
18 changes: 14 additions & 4 deletions tutorials/install-caprover/01.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,26 @@ First - Update your server and install the required packages by running these co
```bash
apt-get update
apt-get upgrade -y
apt-get install curl -y
apt-get install curl apparmor -y
```

Now we can proceed to installing Docker:
Now we can proceed to installing Docker by following "Option 2 - Installing `docker-ce`" in step 1 of "[this tutorial](https://community.hetzner.com/tutorials/howto-docker-install#option-2---installing-docker-ce).

<blockquote>
<details>

<summary>Click here for a quick installation of Docker with the convenience script</summary>

```bash
apt install docker.io
curl -fsSL https://get.docker.com -o get-docker.sh
sh ./get-docker.sh --dry-run # Check which steps this script will run
sh ./get-docker.sh
```

This command will install the latest version of Docker. You could now move on to running CapRover.
</details>
</blockquote>

This will install the latest version of Docker. You could now move on to running CapRover.

## Step 2 - Connect your domain

Expand Down