Minimal PHP Docker image focused on Laravel applications. Its use is intended for fwd, but can fit in any other PHP use-case.
With docker run:
docker run -it --rm fireworkweb/app:7.3-alpine php -v
You can also enable Xdebug:
docker run -it --rm -e ENABLE_XDEBUG=true fireworkweb/app:7.3-alpine php -v
With docker-compose.yml:
app:
build:
context: ./docker/app
dockerfile: Dockerfile
ports:
- "9773:9773"
volumes:
- ".:/app:cached"
- "$HOME/.ssh/id_rsa:/home/developer/.ssh/id_rsa:cached"
environment:
ASUSER: "${$UID}"
ASUSER: Changes the user id that executes the commands ENABLE_XDEBUG: Enables the Xdebug extension
The MIT License (MIT). Please see License File for more information.
Content type
Image
Digest
Size
150.6 MB
Last updated
over 6 years ago
docker pull fireworkweb/app:7.1-alpine-wkhtmltopdf