From 55c9d2c79303d249fe25a87922fa77bd59c8ee12 Mon Sep 17 00:00:00 2001 From: Danny Ben Shitrit Date: Fri, 9 Feb 2024 08:06:08 +0000 Subject: [PATCH] update landing page --- site/index.html | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/site/index.html b/site/index.html index 5a7947f..942eabd 100644 --- a/site/index.html +++ b/site/index.html @@ -177,6 +177,20 @@

Configuration File

# theme: _theme theme: ~ +# enable a link to the page's source at the bottom of each page by setting +# a URL pattern here. Use '%{path}' anywhere in the string to get the +# URI-encoded path of the page. +# source_link: http://example.com/%{path} +source_link: ~ + +# if source_link is enabled, you can change the default link label +# source_link_label: Edit Page +source_link_label: Page Source + +# if source_link is enabled, you can change its position (top / bottom) +# source_link_pos: top +source_link_pos: bottom + # open the server URL in the browser open: false @@ -349,11 +363,20 @@

Docker Image

$ alias madness='docker run --rm -it -v $PWD:/docs -p 3000:3000 dannyben/madness'
 $ madness --help
 
+

or use docker compose:

+
# docker-compose.yml
+services:
+  web:
+    image: dannyben/madness
+    volumes: [".:/docs"]
+    ports: ["3000:3000"]
+    command: server
+

For more information about the docker image, see: