You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> Note: This is an example of how to add OpenReader WebUI to a docker-compose file. You can add it to your existing docker-compose file or create a new one in this directory. Then run `docker-compose up --build` to start the services.
82
80
83
-
```bash
84
81
85
82
Create or add to a `docker-compose.yml`:
86
83
```yaml
@@ -106,9 +103,11 @@ services:
106
103
- Node.js & npm (recommended: use [nvm](https://github.com/nvm-sh/nvm))
107
104
Optionally required for different features:
108
105
- [FFmpeg](https://ffmpeg.org) (required for audiobook m4b creation only)
106
+
- On Linux: `sudo apt install ffmpeg`
107
+
- On MacOS: `brew install ffmpeg`
109
108
- [libreoffice](https://www.libreoffice.org) (required for DOCX files)
110
-
- On Linux: `sudo apt install ffmpeg libreoffice`
111
-
- On MacOS: `brew install ffmpeg libreoffice`
109
+
- On Linux: `sudo apt install libreoffice`
110
+
- On MacOS: `brew install libreoffice`
112
111
113
112
### Steps
114
113
@@ -158,14 +157,18 @@ Contributions are welcome! Fork the repository and submit a pull request with yo
158
157
159
158
## ❤️ Acknowledgements
160
159
161
-
- [Kokoro-FastAPI](https://github.com/remsky/Kokoro-FastAPI) for the API wrapper
0 commit comments