1
ewpratten.com/docker-compose.yml

13 lines
243 B
YAML

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