https://github.com/syncano/php-codebox
A repository for docker php codebox;
https://github.com/syncano/php-codebox
Last synced: about 2 months ago
JSON representation
A repository for docker php codebox;
- Host: GitHub
- URL: https://github.com/syncano/php-codebox
- Owner: Syncano
- Created: 2015-12-22T11:57:20.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-11-25T07:30:30.000Z (over 9 years ago)
- Last Synced: 2025-12-08T12:44:24.211Z (6 months ago)
- Language: Shell
- Size: 10.7 KB
- Stars: 0
- Watchers: 8
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# php-codebox
This repository contains Dockerfile for PHP5 image.
You can build the image yourself:
```
$ docker build -t quay.io/syncano/php-codebox .
```
or pull it from Docker registry:
```
$ docker pull quay.io/syncano/php-codebox
```
Then you can run PHP code inside Docker container:
```
$ docker run -it -v `pwd`/test.php:/tmp/source.php \
quay.io/syncano/php-codebox php -f /tmp/source.php
```