We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ea3897 commit 6a3a1b7Copy full SHA for 6a3a1b7
3 files changed
README.md
@@ -59,7 +59,7 @@ cd easy-transcriber
59
cp .env.example .env
60
# Edit .env and set DEEPGRAM_API_KEY
61
mkdir -p media uploads data
62
-docker compose up --build
+docker compose up --build # docker-compose.override.yml enables local build automatically
63
```
64
65
Open [http://localhost:3000](http://localhost:3000) in your browser.
docker-compose.override.yml
@@ -0,0 +1,3 @@
1
+services:
2
+ transcriber:
3
+ build: .
docker-compose.yml
@@ -1,7 +1,6 @@
services:
transcriber:
image: ghcr.io/readtedium/easy-transcriber:latest
4
- build: .
5
env_file: ".env"
6
ports:
7
- ${SERVER_PORT:-3000}:${SERVER_PORT:-3000}
0 commit comments