diff --git a/README.md b/README.md index 98a9014d..07e1aaf8 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,9 @@ # stackstorm.com StackStorm website and blog based on Github static pages. + +## Development +To start the stackstorm.com website on a local web server, run: +```shell +docker-compose up +``` +Navigate to http://localhost/ diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 00000000..3d82dc22 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,9 @@ +version: "3" + +services: + website: + image: nginx + ports: + - 80:80 + volumes: + - ./:/usr/share/nginx/html