Skip to content

Commit 4c940d3

Browse files
committed
ELSDOC-225: add Alpine Linux support to alt-php ELS docs
1 parent 87f6812 commit 4c940d3

1 file changed

Lines changed: 26 additions & 17 deletions

File tree

docs/els-for-runtimes/php/README.md

Lines changed: 26 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,18 @@ alt-php provides a more flexible and convenient environment for working with dif
2626

2727
<template #Active_Support>
2828

29-
| OS | Package Type | OS Version |
30-
| :----------------------------------------------------------------------: | :----------: | :-------------------------------: |
31-
| EL 7 ( Amazon Linux 2, CentOS, CloudLinux, Oracle Linux, etc.) | RPM | 7.x |
32-
| EL 8 ( AlmaLinux, CentOS, CentOS Stream, CloudLinux, Oracle Linux, etc.) | RPM | 8.x |
33-
| EL 9 ( AlmaLinux, CentOS, CloudLinux, Oracle Linux, etc.) | RPM | 9.x |
34-
| EL 10 ( AlmaLinux, CloudLinux, Oracle Linux, etc.) | RPM | 10.x |
35-
| Ubuntu | DEB | 16.04, 18.04, 20.04, 22.04, 24.04 |
36-
| Debian | DEB | 10, 11, 12, 13 |
37-
| Windows | - | Windows Server 2019, 2022, 2025 |
38-
39-
**For supported PHP versions, see [tuxcare.com/cve-tracker](https://tuxcare.com/cve-tracker/).**
29+
| OS | Package Type | OS Version | PHP versions |
30+
| :----------------------------------------------------------------------: | :----------: | :-------------------------------: | :---------------------------------------: |
31+
| EL 7 ( Amazon Linux 2, CentOS, CloudLinux, Oracle Linux, etc.) | RPM | 7.x | 5.1–5.6, 7.0–7.4, 8.0–8.2 |
32+
| EL 8 ( AlmaLinux, CentOS, CentOS Stream, CloudLinux, Oracle Linux, etc.) | RPM | 8.x | 5.1–5.6, 7.0–7.4, 8.0–8.2 |
33+
| EL 9 ( AlmaLinux, CentOS, CloudLinux, Oracle Linux, etc.) | RPM | 9.x | 5.2–5.6, 7.0–7.4, 8.0–8.2 |
34+
| EL 10 ( AlmaLinux, CloudLinux, Oracle Linux, etc.) | RPM | 10.x | 5.3, 5.6, 7.0–7.4, 8.0–8.2 |
35+
| Ubuntu | DEB | 16.04 | 5.6, 7.0–7.4, 8.0–8.2 |
36+
| Ubuntu | DEB | 18.04, 20.04, 22.04, 24.04 | 5.2, 5.6, 7.0–7.4, 8.0–8.2 |
37+
| Debian | DEB | 10, 11, 12 | 5.6, 7.0–7.4, 8.0–8.2 |
38+
| Debian | DEB | 13 | 5.2–5.6, 7.0–7.4, 8.0–8.2 |
39+
| Alpine Linux | APK | 3.22, 3.23 | 7.3, 7.4, 8.0, 8.1 |
40+
| Windows | - | Windows Server 2019, 2022, 2025 ||
4041

4142
**Supported architecture:** x86_64 (64-bit) on Linux
4243

@@ -92,7 +93,8 @@ sudo yum install libvpx-1.3.0
9293

9394
<CodeTabs :tabs="[
9495
{ title: 'RPM', content: `wget https://repo.alt.tuxcare.com/alt-php-els/install-els-alt-php-rpm-repo.sh` },
95-
{ title: 'DEB', content: `wget https://repo.alt.tuxcare.com/alt-php-els/install-els-alt-php-deb-repo.sh` }
96+
{ title: 'DEB', content: `wget https://repo.alt.tuxcare.com/alt-php-els/install-els-alt-php-deb-repo.sh` },
97+
{ title: 'APK', content: `wget https://repo.alt.tuxcare.com/alt-php-els/install-els-alt-php-apk-repo.sh` }
9698
]" />
9799

98100
2. Run the installer script with your license key
@@ -101,7 +103,8 @@ sudo yum install libvpx-1.3.0
101103

102104
<CodeTabs :tabs="[
103105
{ title: 'RPM', content: `sh install-els-alt-php-rpm-repo.sh --license-key XXX-XXXXXXXXXXXX` },
104-
{ title: 'DEB', content: `bash install-els-alt-php-deb-repo.sh --license-key XXX-XXXXXXXXXXXX` }
106+
{ title: 'DEB', content: `bash install-els-alt-php-deb-repo.sh --license-key XXX-XXXXXXXXXXXX` },
107+
{ title: 'APK', content: `sh install-els-alt-php-apk-repo.sh --license-key XXX-XXXXXXXXXXXX` }
105108
]" />
106109

107110
3. Install a PHP version
@@ -110,14 +113,16 @@ sudo yum install libvpx-1.3.0
110113

111114
<CodeTabs :tabs="[
112115
{ title: 'RPM', content: `yum groupinstall alt-php73` },
113-
{ title: 'DEB', content: `apt-get install alt-php73-meta` }
116+
{ title: 'DEB', content: `apt-get install alt-php73-meta` },
117+
{ title: 'APK', content: `apk add alt-php73` }
114118
]" />
115119

116120
To install all versions at the same time:
117121

118122
<CodeTabs :tabs="[
119123
{ title: 'RPM', content: `yum groupinstall alt-php` },
120-
{ title: 'DEB', content: `apt-get install alt-php` }
124+
{ title: 'DEB', content: `apt-get install alt-php` },
125+
{ title: 'APK', content: `apk add alt-php` }
121126
]" />
122127

123128
4. Verify the installation
@@ -126,7 +131,8 @@ sudo yum install libvpx-1.3.0
126131

127132
<CodeTabs :tabs="[
128133
{ title: 'RPM', content: `rpm -qa | grep alt-php` },
129-
{ title: 'DEB', content: `dpkg -l | grep alt-php` }
134+
{ title: 'DEB', content: `dpkg -l | grep alt-php` },
135+
{ title: 'APK', content: `apk info | grep alt-php` }
130136
]" />
131137

132138
</ELSSteps>
@@ -999,7 +1005,10 @@ The PHP core includes many built-in extensions that provide basic functionality,
9991005

10001006
<WhatsNext hide-title>
10011007

1002-
* ![](/images/shield.webp) [Machine-readable security data](../machine-readable-security-data/) — OVAL, CSAF, Errata, and RSS feeds for PHP ELS
1008+
* ![](/images/eye.webp) [CVE Tracker](https://tuxcare.com/cve-tracker/?product=PHP) — Track vulnerability fixes and updates
1009+
* ![](/images/shield.webp) [Available fixes](https://tuxcare.com/cve-tracker/fixes?product=PHP) — Patched versions and changelogs
1010+
* ![](/images/clipboard-notes.webp) [Supported components](https://tuxcare.com/cve-tracker/products?product=PHP) — Full list of product parts covered by ELS
1011+
* ![](/images/shield.webp) [Machine-readable security data](/els-for-runtimes/machine-readable-security-data/#php) — OVAL, CSAF, Errata, and RSS feeds for PHP ELS
10031012
* ![](/images/clipboard-notes.webp) [PHP Changelog](https://changelog.cloudlinux.com/) — latest updates, fixes, and enhancements for ALT-PHP
10041013

10051014
</WhatsNext>

0 commit comments

Comments
 (0)