Mike Bailey

Results 4 comments of Mike Bailey

Looks like it does: ``` $ docker-compose up Pulling jekyll (jekyll/jekyll:4.0)... Trying to pull repository docker.io/jekyll/jekyll ... 4.0: Pulling from docker.io/jekyll/jekyll Digest: sha256:619acd2826c54b67238d9bb7b0473981da4e0f758f24b7d3fe6c614f072e07f3 Status: Downloaded newer image for docker.io/jekyll/jekyll:4.0 Recreating...

Here's my docker-compose.yml, in case it helps: ``` version: "3" services: jekyll: image: jekyll/jekyll:latest ports: - "4000:4000" command: jekyll serve --watch --host "0.0.0.0" --trace --config _config.yml,_config.dev.yml volumes: - .:/srv/jekyll ```

I figured- at least it's here now for documentation! I found that it seems to work when I don't specify `--config _config.yml`. Is that config file not being used anymore?...

Gotcha. I'll keep playing with it and update if I find anything helpful. Happy to help test anything.