Skip to content

Instantly share code, notes, and snippets.

View t0rton's full-sized avatar

t0rton

  • Thailand
View GitHub Profile
@kovagoz
kovagoz / docker-compose.yml
Created August 29, 2016 06:57
Laravel Docker Compose Nginx PHP-FPM
version: '2'
services:
nginx:
image: nginx:alpine
ports:
- "8000:80"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
links:
- fpm