We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d6d33b8 + 34d1b9c commit 1b14a2fCopy full SHA for 1b14a2f
README.md
@@ -1,2 +1,9 @@
1
# stackstorm.com
2
StackStorm website and blog based on Github static pages.
3
+
4
+## Development
5
+To start the stackstorm.com website on a local web server, run:
6
+```shell
7
+docker-compose up
8
+```
9
+Navigate to http://localhost/
docker-compose.yml
@@ -0,0 +1,9 @@
+version: "3"
+services:
+ website:
+ image: nginx
+ ports:
+ - 80:80
+ volumes:
+ - ./:/usr/share/nginx/html
0 commit comments