Skip to content
This repository was archived by the owner on Mar 29, 2023. It is now read-only.

tommy-muehle/docker-alpine-php-nightly

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 

Repository files navigation

docker-alpine-php-nightly

Docker Image for PHP nightly. Currently 8.0.0-dev.

This image is highly inspired by the official Alpine PHP images.

How to use this image

Run a single PHP script

$ docker run -it --rm --name my-running-script -v "$PWD":/usr/src/myapp -w /usr/src/myapp tommymuehle/docker-alpine-php-nightly php your-script.php

Create a Dockerfile in your PHP project

FROM tommymuehle/docker-alpine-php-nightly
COPY . /usr/src/myapp
WORKDIR /usr/src/myapp
CMD [ "php", "./your-script.php" ]

Then, run the commands to build and run the Docker image:

$ docker build -t my-php-app .
$ docker run -it --rm --name my-running-app my-php-app

Issues

If you have any problems with or questions about this image, please contact me through a GitHub issue.

About

Docker Image to run PHP nightly builds. Currently 8.0.0-dev.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors