1
ewpratten.com/docker-compose.yml
Evan Pratten 9bf246bdb7
Some checks failed
Deploy ewpratten.com / Deploy to Production (push) Failing after 13s
Explicit gemfile
2024-12-03 17:00:26 -05:00

14 lines
281 B
YAML

services:
jekyll:
build:
context: .
dockerfile: Dockerfile
command: serve --watch
platform: linux/x86_64
stdin_open: true
tty: true
volumes:
- .:/srv/jekyll:Z
- ./Gemfile:/srv/jekyll/Gemfile
ports:
- "127.0.0.1:4000:4000"