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
@@ -104,7 +120,7 @@ You can also run the application using Docker:
104
120
105
121
This command mounts the `input` and `output` directories and the `.transcribe.yaml` configuration file into the Docker container.
106
122
107
-
2. (Optional) We can also run the application using the provided `docker-compose.yml` file:
123
+
4. (Optional) We can also run the application using the provided `docker-compose.yml` file:
108
124
109
125
```yaml
110
126
version: '3'
@@ -121,13 +137,15 @@ You can also run the application using Docker:
121
137
- ./.transcribe.yaml:/app/.transcribe.yaml
122
138
```
123
139
124
-
Run the following command to start the application using Docker Compose:
140
+
Run the following command to start the application using Docker Compose:
125
141
126
-
```bash
127
-
docker compose run --rm app
128
-
```
142
+
```bash
143
+
docker compose run --rm transcribe-me
144
+
```
145
+
146
+
This command mounts the `input`, `output`, `archive`, and `.transcribe.yaml` configuration file into the Docker container. See [`compose.example.yaml`](./compose.example.yaml) for an example configuration.
129
147
130
-
This command mounts the `input`, `output`, `archive`, and `.transcribe.yaml` configuration file into the Docker container. See [`compose.example.yaml`](./compose.example.yaml) for an example configuration.
148
+
Make sure to replace `OPENAI_API_KEY` and `ANTHROPIC_API_KEY` with your actual API keys. Also make sure to create the `.transcribe.yaml` configuration file in the same directory as the `docker-compose.yml` file.
0 commit comments