thebookofshaders/docker-compose.yml
Matthew Clark 1221cf1b56
Add docker-compose file for easy setup
With this, if you have docker and docker-compose installed, starting up the book is a simple matter of `docker-compose up` and then you'll find the book up at `http:\\localhost:8000` simple as that
2018-01-27 03:51:11 -06:00

7 lines
88 B
YAML

web:
image: php:7.0-apache
volumes:
- .:/var/www/html/
ports:
- "8000:80"