File tree Expand file tree Collapse file tree 1 file changed +27
-1
lines changed
Expand file tree Collapse file tree 1 file changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,33 @@ The variable `CORS_ORIGIN` is useful for development with the frontend running o
3838
3939## Installation with Docker
4040
41- Coming soon...
41+ ### With command line arguments
42+
43+ You can build the Docker image with:
44+ ``` bash
45+ docker build -t whisper-dashboard .
46+ ```
47+
48+ Or you can pull the image from GitHub Container Registry:
49+ ``` bash
50+ docker pull ghcr.io/gauthier-th/whisper-dashboard:latest
51+ ```
52+
53+ Then run the container with:
54+
55+ ``` bash
56+ docker run -d \
57+ -p 3000:3000 \
58+ -e JWT_SECRET=secret \
59+ -e MAX_PARALLEL_TRANSCRIPTIONS=1 \
60+ -e WHISPER_MODEL=tiny \
61+ -v /path/to/data:/config \
62+ ghcr.io/gauthier-th/whisper-dashboard:latest
63+ ```
64+
65+ ### With a Docker Compose file
66+
67+ To do...
4268
4369## Native installation
4470
You can’t perform that action at this time.
0 commit comments