mirror of
https://github.com/0xAX/linux-insides.git
synced 2024-12-22 06:38:07 +00:00
Merge pull request #704 from radeksm/feature/run_in_docker
Feature/run in docker
This commit is contained in:
commit
973ddfbdda
26
README.md
26
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 within local 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
|
||||
--------------
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user