From 7873a715d1d03982a08a3a27c68369b659904ee7 Mon Sep 17 00:00:00 2001 From: Radoslaw Smigielski Date: Tue, 3 Mar 2020 06:24:14 +0000 Subject: [PATCH] How to create and run gitbook server in local container --- README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/README.md b/README.md index 6b8a92d..1565707 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,32 @@ On other languages * [Spanish](https://github.com/leolas95/linux-insides) * [Turkish](https://github.com/ayyucedemirbas/linux-insides_Turkish) +Docker +------ + +In order to run own copy of the book with gitook using within container: + +1. Build container image + ```bash + docker image build \ + --rm --squash \ + --label linux-insides \\ + --tag linux-insides-book:latest \ + -f Dockerfile + ``` +1. Create and run book in local container + ```bash + docker run \ + --detach \ + --rm \ + -p 4000:4000 \ + --name linux-insides-book \ + --hostname linux-insides-book \ + localhost/linux-insides-book + ``` +1. Open your local copy of linux insides book under this url + http://127.0.0.1:4000 + Contributions --------------