https://github.com/hlissner/docker-phpfpm-dev
Development php-fpm image for Docker
https://github.com/hlissner/docker-phpfpm-dev
Last synced: 3 months ago
JSON representation
Development php-fpm image for Docker
- Host: GitHub
- URL: https://github.com/hlissner/docker-phpfpm-dev
- Owner: hlissner
- License: mit
- Created: 2016-02-21T00:50:54.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-06-01T07:35:30.000Z (about 9 years ago)
- Last Synced: 2025-01-13T21:44:32.670Z (5 months ago)
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Php-fpm - Development Image
> I pity the fool [who uses this for production]!
This is a php-fpm Docker image primed for developing and testing PHP applications in my
local development environment. Goes best with a webserver companion container (like
[nginx](https://github.com/hlissner/docker-nginx-dev)).## Example docker-compose.yml
```yaml
web:
image: vnought/nginx-dev
ports:
- "8080:80"
volumes:
- ./config/nginx.conf:/etc/nginx/conf.d/vhost.conf
- .:/usr/share/nginx
links:
- phpphp:
image: vnought/phpfpm-dev
volumes:
- .:/usr/share/nginx
```