We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently it's possible to install PHP extensions yourself but it's too complicated to do manually.
The current steps require you to do the following:
docker
Dockerfile
FROM bjornlindholm/laravel:7.4 RUN apt-get update RUN apt-get install -y php7.4-gmp CMD ["supervisord"]
Where php7.4-gmp is the name of the extensions to install. 3. Update docker-compose.yml Replace
php7.4-gmp
docker-compose.yml
services: app: image: bjornlindholm/laravel:7.4
With:
services: app: build: context: ./docker
Instead I would like to specify extensions in the serve.toml file and create a UI for it as well
serve.toml
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently it's possible to install PHP extensions yourself but it's too complicated to do manually.
The current steps require you to do the following:
docker
folder in the project rootDockerfile
inside thedocker
folder with the following contents:Where
php7.4-gmp
is the name of the extensions to install.3. Update
docker-compose.yml
Replace
With:
Instead I would like to specify extensions in the
serve.toml
file and create a UI for it as wellThe text was updated successfully, but these errors were encountered: