Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

PHP 8.4 from Alpine Linux with Composer

Use this image: ghcr.io/alexislefebvre/php-8.4-alpine-composer

Example with Docker Compose for a Symfony project:

services:
    php:
        image: ghcr.io/alexislefebvre/php-8.4-alpine-composer
        working_dir: /app
        ports:
            - 8000:8000
        volumes:
            - ./:/app/
        entrypoint: php --server 0.0.0.0:8000 --docroot public/