Skip to content

Commit 3930dc6

Browse files
authored
[docs] fixes after major docs push (ddev#3968)
* Transplant apt/yum instructions into new docs * Get version-history out of the main docs * Ignore the master build download as it's not always there
1 parent bfdbc0d commit 3930dc6

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed

docs/content/users/install/ddev-installation.md

+27
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,33 @@ Docker or an alternative is required before anything will work with DDEV. This i
3131

3232
To upgrade DDEV to the latest stable version, just run the script again.
3333

34+
=== "Linux apt/yum"
35+
36+
DDEV has Debian and RPM packages that work with both apt and yum repositories, and on most any variant that usees those, including Windows WSL2.
37+
38+
* Debian/Ubuntu and derivative distros - Install the ddev apt repositories with:
39+
40+
```bash
41+
echo "deb [trusted=yes] https://apt.fury.io/drud/ /" | sudo tee -a /etc/apt/sources.list.d/ddev.list
42+
sudo apt update && sudo apt install ddev
43+
```
44+
45+
In the future you can update as usual, with `sudo apt update && sudo apt upgrade`. (Signed repo support will be added in the near future.)
46+
47+
* Yum/RPM (Fedora, RedHat, etc.):
48+
49+
```bash
50+
echo '[ddev]
51+
name=DDEV Repo
52+
baseurl=https://yum.fury.io/drud/
53+
enabled=1
54+
gpgcheck=0' | sudo tee -a /etc/yum.repos.d/ddev.repo
55+
56+
sudo dnf install --refresh ddev
57+
```
58+
59+
In the future you can update as usual, with `sudo dnf upgrade ddev`. (Signed repo support will be added in the near future.)
60+
3461
=== "Linux (Homebrew)"
3562

3663
For Linux amd64 users, [Homebrew](https://brew.sh/) packages are available: `brew install drud/ddev/ddev`.

markdown-link-check.json

+3
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
},
2121
{
2222
"pattern": "^https://www.cyberciti.biz/"
23+
},
24+
{
25+
"pattern": "^https://nightly.link/drud/ddev/workflows/master-build/master"
2326
}
2427
],
2528
"httpHeaders": [
File renamed without changes.

0 commit comments

Comments
 (0)