https://github.com/atomicptr/boxed-php
Convenient PHP base container
https://github.com/atomicptr/boxed-php
php php-docker php-docker-image
Last synced: 3 months ago
JSON representation
Convenient PHP base container
- Host: GitHub
- URL: https://github.com/atomicptr/boxed-php
- Owner: atomicptr
- License: 0bsd
- Created: 2025-01-24T13:02:48.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2025-03-21T12:31:36.000Z (3 months ago)
- Last Synced: 2025-03-25T02:49:56.464Z (3 months ago)
- Topics: php, php-docker, php-docker-image
- Language: Dockerfile
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# boxed-php
Convenient PHP base container
## Features
- PHP-FPM and nginx in one container
- Runs Laravel and Symfony applications out of the box
- Supports PHP versions 8.2, 8.3 and 8.4
- Updated daily## Usage
This is intended to be used as a base image, so in your Dockerfile do:
```docker
FROM ghcr.io/atomicptr/boxed-php:8.4# add some packages
RUN apk add --no-cache bash# install some php extension...
RUN docker-php-ext-install gd# assuming that we are in your root dir with a public/
COPY . /app
```## License
BSD 0-clause