Skip to content

Commit

Permalink
Add a jekyll container
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbarless committed May 24, 2018
1 parent ed794c3 commit 053cc85
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions website/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,22 @@ services:
- "nginx-proxy"
environment:
ACME_CA_URI: https://acme-staging.api.letsencrypt.org/directory # testing value

jekyll:
command: jekyll serve
image: jekyll/jekyll:latest
depends_on:
- nginx-proxy
- letsencrypt-nginx-proxy-companion
volumes:
- $PWD:/srv/jekyll
- $PWD/vendor/bundle:/usr/local/bundle
ports:
- "4000:4000"
- "35729:35729"
- "3000:3000"
environment:
VIRTUAL_HOST: "tomesh.dev,www.tomesh.dev"
VIRTUAL_PORT: 4000
LETSENCRYPT_HOST: "tomesh.dev,www.tomesh.dev"
LETSENCRYPT_EMAIL: "[email protected]"

0 comments on commit 053cc85

Please sign in to comment.