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
pull/210/head
Matthew Clark 6 years ago committed by GitHub
parent df50b94fe1
commit 1221cf1b56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,6 @@
web:
image: php:7.0-apache
volumes:
- .:/var/www/html/
ports:
- "8000:80"
Loading…
Cancel
Save