Skip to content

Commit 208e248

Browse files
committed
Documentation for Docker
1 parent 5269f21 commit 208e248

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

README.md

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)