blob: d3a5ee8d1ef9b70ea7b9d91c62340aa2edcc2ee8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
## Docs with Docker
If you want to edit the docs add this to your docker-compose.yml:
```yml
services:
[...]
daux:
image: daux/daux.io
ports:
- 8085:8085
working_dir: /build
volumes:
- ./rss-bridge/docs:/build/docs
network_mode: host
```
and run for example the `daux serve` command with `docker-compose run --rm daux daux serve`.
After that you can access the docs at `localhost:8085` and edit the files in `rss-bridge/docs`.
|