ray-b/docker-compose.yml

22 lines
397 B
YAML
Raw Permalink Normal View History

2023-07-15 16:44:27 +10:00
services:
mdbook:
2023-07-15 16:46:38 +10:00
container_name: nihil-unbound
2023-07-16 12:41:25 +10:00
restart: always
2023-07-15 16:44:27 +10:00
# https://hub.docker.com/r/peaceiris/mdbook/tags
2023-07-15 16:45:30 +10:00
image: peaceiris/mdbook:v0.4.31-rust
2023-07-15 16:44:27 +10:00
# stdin_open: true
# tty: true
ports:
- "127.0.0.1:5100:3000"
#- 5101:3001
volumes:
- ./book:/book
command:
# - init
# - echo "y"
- serve
- --hostname
- '0.0.0.0'