Skip to content

esfahanahan/php-alpine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PHP-Alpine

PHP running on alpine base Docker Image with or without Nginx 🐳

GitHub Workflow Status (with event) LICENSE Stars Count Forks Count Watchers Count Issues Count Pull Request Count Follow

Pull it from Github Registry

To pull the docker image:

docker pull ghcr.io/esfahanahan/php-alpine:8.3-mysql-nginx

Usage

To run from current dir

docker run -v $(pwd):/var/www/html -p 80:80 ghcr.io/esfahanahan/php-alpine:8.3-mysql-nginx

What's Included

Other Details

  • Alpine base image

PHP Extension

  • bcmath
  • bz2
  • exif
  • gd
  • gmp
  • intl
  • mysqli
  • opcache
  • pcntl
  • mysqli or pgsql
  • pdo
  • pdo_mysql or pdo_pgsql
  • sockets
  • xml
  • zip

Adding other PHP Extension

You can add additional PHP Extensions by running docker-ext-install command. Don't forget to install necessary dependencies for required extension.

FROM ghcr.io/esfahanahan/php-alpine:8.3-mysql-nginx
RUN docker-php-ext-install xdebug

Adding a cronjob

FROM ghcr.io/esfahanahan/php-alpine:8.3-mysql-nginx
echo '0 * * * * /usr/local/bin/php  /var/www/artisan schedule:run >> /dev/null 2>&1' >> /etc/crontab

Adding custom Supervisor config

You can add your own Supervisor config inside /etc/supervisor.d/. File extension needs to be *.ini. By default this image added nginx, php-fpm and taker process in supervisor.

E.g: For a nodejs program you can make file my-websocket-app.ini

[program:my-websocket-app]
process_name=%(program_name)s
command=node /app/socket.js
autostart=true
autorestart=true
redirect_stderr=true

On your Docker image

FROM ghcr.io/esfahanahan/php-alpine:latest
ADD my-websocket-app.ini /etc/supervisor.d/

For more details please refrer to QPod/supervisord documentions.

Bug Reporting

If you find any bugs, please report it by submitting an issue on our issue page with a detailed explanation. Giving some screenshots would also be very helpful.

Feature Request

You can also submit a feature request on our issue page or discussions and we will try to implement it as soon as possible.

About

Yet Another PHP + Alpine Docker Image.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors