vesper-ridge-wiki/docker-compose.yml

18 lines
498 B
YAML
Raw Permalink Normal View History

2023-01-31 01:07:52 -05:00
version: '3'
services:
jekyll:
image: jekyll/jekyll:latest
command: bash -c "gem install bundler -v 2.2.3 && bundle _2.2.3_ install && bundle exec jekyll serve --host 0.0.0.0 --no-watch"
restart: unless-stopped
volumes:
- .:/srv/jekyll:cached
caddy:
image: caddy:latest
restart: unless-stopped
ports:
- 80:80
- 443:443
volumes:
- ./caddy/Caddyfile:/etc/caddy/Caddyfile
- ./caddy/caddy_data:/data
- ./caddy/caddy_config:/config