This commit is contained in:
root 2022-10-18 11:00:37 -04:00
parent 770fad5a40
commit 9d412e22be
4 changed files with 16 additions and 5 deletions

5
book/book.toml Normal file
View File

@ -0,0 +1,5 @@
[book]
authors = []
language = "en"
multilingual = false
src = "src"

3
book/src/SUMMARY.md Normal file
View File

@ -0,0 +1,3 @@
# Summary
- [Chapter 1](./chapter_1.md)

1
book/src/chapter_1.md Normal file
View File

@ -0,0 +1 @@
# Chapter 1

View File

@ -5,14 +5,16 @@ services:
container_name: test-mdbook container_name: test-mdbook
# https://hub.docker.com/r/peaceiris/mdbook/tags # https://hub.docker.com/r/peaceiris/mdbook/tags
image: peaceiris/mdbook:v0.4.21-rust image: peaceiris/mdbook:v0.4.21-rust
stdin_open: true # stdin_open: true
tty: true # tty: true
ports: ports:
- 13000:3000 - 13000:3000
- 13001:3001 - 13001:3001
volumes: volumes:
- ./book:/book - ./book:/book
command: command:
- serve - init
- --hostname # - echo "y"
- '0.0.0.0' #- serve
#- --hostname
#- '0.0.0.0'