Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shyim/wolfi-php-extension-installer
Install proprietary PHP extensions into Wolfi
https://github.com/shyim/wolfi-php-extension-installer
Last synced: 10 days ago
JSON representation
Install proprietary PHP extensions into Wolfi
- Host: GitHub
- URL: https://github.com/shyim/wolfi-php-extension-installer
- Owner: shyim
- Created: 2024-03-10T15:11:16.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-03-10T15:38:50.000Z (8 months ago)
- Last Synced: 2024-10-12T09:16:15.877Z (about 1 month ago)
- Language: Shell
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Wofli PHP Extension Installer
This script should covers all PHP proprietary extensions for PHP. All open source PHP extensions should be directly submitted to [WolfiOS itself](https://github.com/wolfi-dev/os).
Inspired by https://github.com/mlocati/docker-php-extension-installer
## Supported Extensions
- Blackfire
- Tideways
- Relay## Installation
### Copy into Image
```dockerfile
ADD https://raw.githubusercontent.com/shyim/wolfi-php-extension-installer/main/install-wolfi-php-extensions /usr/bin/install-wolfi-php-extensionsRUN sh /usr/bin/install-wolfi-php-extensions blackfire
```### Execute directly
```dockerfile
RUN apk add --no-cache curlRUN curl -sSL https://raw.githubusercontent.com/shyim/wolfi-php-extension-installer/main/install-wolfi-php-extensions | sh -s blackfire
```## Usage
```bash
install-wolfi-php-extensions blackfire
```You can pass also multiple ones.