Skip to content

Docker image for PHP under build environments

License

Notifications You must be signed in to change notification settings

enginedigital/php-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 

Repository files navigation

php-docker

Docker image for PHP under build environments

View latest container image

Includes

  • PHP v8.2.17
  • zip
  • autoconf
  • intl
  • opcache
  • gd
  • bcmath
  • gmp
  • exif
  • increased memory_limit
  • enabled jit

Building

docker build -t php82 .

Running Locally

docker run -it --volume="$PWD:/app" --workdir="/app" --entrypoint=/bin/bash php82

Running Remotely

docker run -it --volume="$PWD:/app" --workdir="/app" --entrypoint=/bin/bash ghcr.io/enginedigital/php-docker:main