Skip to content

Commit

Permalink
added docker compose file
Browse files Browse the repository at this point in the history
  • Loading branch information
Biplab-Dutta committed Jul 15, 2022
1 parent cac71e6 commit 077a09b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# docker run --volume="$PWD:/srv/jekyll" -p 4000:4000 jekyll/jekyll:4.2.2 jekyll serve

version: "3.9.0"
services:
jekyll-serve:
image: jekyll/jekyll:4.2.2
volumes:
- ".:/srv/jekyll"
ports:
- "4000:4000"
command: "jekyll serve -w"

0 comments on commit 077a09b

Please sign in to comment.