Jekyll Docker-Compose Override

I’m trying to add jekyll to devilbox but can’t seem to make it work. Can anyone help me figure it out?

Below is my docker-compose.override.yml

version: '2.1'

# The following override shows an example for the cockroachdb
services:
  jekyll:
    image: jekyll/jekyll:pages
    command: jekyll serve --watch --incremental
    ports: 
      - "${LOCAL_LISTEN_ADDR}26257:26257"
      - "${LOCAL_LISTEN_ADDR}8080:8080"
    networks:
      app_net:
        ipv4_address: 172.16.238.200

I too would like to add jekyll but I have no idea how to do it yet. I presume doing what you did there then mapping a local folder to it in a volume. :confused: