Skip to content

Commit

Permalink
add some hints to compose file
Browse files Browse the repository at this point in the history
  • Loading branch information
joschahenningsen committed Nov 12, 2024
1 parent 6680475 commit f4bf941
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
####################################################
# Not production ready, only for local development #
####################################################
version: "3.8"

services:
Expand All @@ -20,7 +23,7 @@ services:
container_name: tum-live-worker
depends_on:
- tum-live
- vod-service
#- vod-service # Omitted for local development due to size. Comment out to use voice-service
build: worker
platform: linux/amd64
environment:
Expand Down Expand Up @@ -68,16 +71,17 @@ services:
- ./init.sql:/data/application/init.sql
- mariadb-data:/var/lib/mysql
restart: always
voice-service:
container_name: tum-live-voice-service
image: ghcr.io/tum-dev/tum-live-voice-service:latest
environment:
- TRANSCRIBER=whisper
- WHISPER_MODEL=tiny
- MAX_WORKERS=10
- DEBUG=1
volumes:
- mass:/mass
# Omitted for local development due to size. Comment out to use voice-service
# voice-service:
# container_name: tum-live-voice-service
# image: ghcr.io/tum-dev/tum-live-voice-service:latest
# environment:
# - TRANSCRIBER=whisper
# - WHISPER_MODEL=tiny
# - MAX_WORKERS=10
# - DEBUG=1
# volumes:
# - mass:/mass

volumes:
recordings:
Expand Down

0 comments on commit f4bf941

Please sign in to comment.