install
📥 Homebrew (un)installer (by Homebrew)
docker-php-extension-installer
Easily install PHP extensions in Docker containers (by mlocati)
install | docker-php-extension-installer | |
---|---|---|
9 | 12 | |
2,274 | 4,524 | |
1.5% | 2.0% | |
8.8 | 9.3 | |
5 days ago | 3 days ago | |
Shell | Shell | |
BSD 2-clause "Simplified" License | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
install
Posts with mentions or reviews of install.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2022-11-28.
-
No one knows how to uninstall Homebrew
https://github.com/homebrew/install#uninstall-homebrew
-
This is my first bash script! What do you think? You plug in your droplet ip, your domain and your gitlab info and in 5 minutes your web app is live at https://yourdomain, and all future commits to main are automatically deployed. Included templates for new django, flask and fastApi projects!
Beyond what I've already said, I would refer you to look at how, e.g. Homebrew install.sh (and other repos in that project) handle a comparable setup. You can see a lot of what I have been flagging in there: tests, functions, comments, not making permanent changes outside remit, etc.
- Terminal errors, cannot use command line to install git, brew, etc.
-
Brew Is a Bad Neighbor
I was going to say that recent installs have switched to /opt/Homebrew, but while digging up supporting evidence I noticed that they bizarrely only do that for arm64 installs: https://github.com/Homebrew/install/blob/master/install.sh#L...
-
Uninstalling Guix on a foreign distro
In comparison, Homebrew offers both an official install and uninstall script: https://github.com/Homebrew/install
-
How to install Homebrew on Mavericks in 2021 ?
this commit drops support for mavericks https://github.com/Homebrew/install/commit/4016e8675278dc7d5633179caf5507020091762b
-
Is it possible to use a container as my terminal on Mac?
The quick way to remove brew is literally on the website to install & uninstall brew: https://github.com/homebrew/install#uninstall-homebrew - if you plan to install/un/reinstall, it’s probably better to grab the actual scripts in those commands, but whatever.
-
Installing Mac Software
Assuming you're using this? https://github.com/Homebrew
- Homebrew package manager installer merges Apple Silicon support
docker-php-extension-installer
Posts with mentions or reviews of docker-php-extension-installer.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-05-12.
-
Are there any plans on making PHP 8 a normal apt repository?
Our "fix" was eventually move away to containers (local dev docker, production k8s) and never look back. Essentially https://github.com/mlocati/docker-php-extension-installer fills the void perfectly.
-
Optimizing Bitbucket Pipelines with Custom Docker Images
From php:8.0.26-cli RUN apt-get update && apt-get install -qy \ unzip \ git \ curl \ rsync \ libmcrypt-dev \ libzip-dev \ zip \ default-mysql-client \ libfreetype6-dev \ libjpeg62-turbo-dev \ libpng-dev \ zlib1g-dev RUN curl -sSLf \ -o /usr/local/bin/install-php-extensions \ https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions && \ chmod +x /usr/local/bin/install-php-extensions && \ install-php-extensions grpc-1.45.0 RUN docker-php-ext-configure gd --with-freetype --with-jpeg \ && docker-php-ext-install pdo_mysql zip gd RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
- A Python Script to connect to GitHub and Fetches Search Results
-
PHP image can't install gRPC extension
dockerfile using this script https://github.com/mlocati/docker-php-extension-installer
-
Answer: I am not able to install mbstring using docker file
FROM php:8-fpm # Copy composer.lock and composer.json COPY composer.lock composer.json /var/www/ # Set working directory WORKDIR /var/www ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/ RUN chmod +x /usr/local/bin/install-php-extensions && sync && \ install-php-extensions mbstring pdo_mysql zip exif pcntl gd #previous code # Install dependencies RUN apt-get update && apt-get install -y \ build-essential \
-
How do you install additional PHP extensions?
And https://github.com/mlocati/docker-php-extension-installer for every not supported extension
- Debug Docker PHP Project on PHPStorm using Xdebug
-
Need help installing php APCU in a php-fpm:7.4 Debian based container
This helped me deal w/ installing missing extensions.
-
How to Enable PHP extensions via Dockerfile?
Take a look at Easy installation of PHP extensions in official PHP Docker images, since i stumble on it i didn't need nothing else for the job.
-
What should do about this warning: symfony 5.2 please install the intl php extension for best performance?
If you use Docker there's this great tool: https://github.com/mlocati/docker-php-extension-installer
What are some alternatives?
When comparing install and docker-php-extension-installer you can also consider the following projects:
displaylink-debian - DisplayLink driver installer for Debian and Ubuntu based Linux distributions.
Laradock - Full PHP development environment for Docker.
ezinnit - ezinnit initializes your gitlab repository and your server. Your app will be live and commits to main will automatically deploy.
lando - A development tool for all your projects that is fast, easy, powerful and liberating
whalebrew - Homebrew, but with Docker images
Laravel Homestead