Skip to content

Commit

Permalink
Merge pull request #12 from StackStorm/feature/local-development
Browse files Browse the repository at this point in the history
Add basic docker-compose file for a local web development
  • Loading branch information
arm4b authored Aug 20, 2022
2 parents d6d33b8 + 34d1b9c commit 1b14a2f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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/
9 changes: 9 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
version: "3"

services:
website:
image: nginx
ports:
- 80:80
volumes:
- ./:/usr/share/nginx/html

0 comments on commit 1b14a2f

Please sign in to comment.