Skip to content

Commit 1b14a2f

Browse files
authored
Merge pull request #12 from StackStorm/feature/local-development
Add basic docker-compose file for a local web development
2 parents d6d33b8 + 34d1b9c commit 1b14a2f

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
11
# stackstorm.com
22
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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
version: "3"
2+
3+
services:
4+
website:
5+
image: nginx
6+
ports:
7+
- 80:80
8+
volumes:
9+
- ./:/usr/share/nginx/html

0 commit comments

Comments
 (0)