Sign inSign up

jdreinhardt/waas

By jdreinhardt

Updated over 3 years ago

Unofficial multi-arch builds for Whisper as a Service

Image
2

1.1K

jdreinhardt/waas repository overview

Unofficial builds for Whisper as a Service.

Tags

  • latest is built from the latest updates on the main branch from the source repository

Quickstart

The easiest way to get started is to run using docker-compose

docker-compose.yml

version: "3.9"
services:
  api:
    image: jdreinhardt/waas:latest
    ports:
      - "3000:3000"
    volumes:
      - .:/workspace
    depends_on:
      - redis
    environment:
      - BASE_URL=https://waas.example.com
      - [email protected]
      - EMAIL_SENDER_PASSWORD=secure_password
      - EMAIL_SENDER_HOST=smtp.example.com
      - DISCLAIMER='This is a <a href="example.com">disclaimer</a>'
    command: gunicorn -w 2 -b 0.0.0.0:3000 --log-file=- 'src.main:app'
  worker:
    image: jdreinhardt/waas:latest
    volumes:
      - .:/workspace
    depends_on:
      - redis
    environment:
      - BASE_URL=https://waas.example.com
      - [email protected]
      - EMAIL_SENDER_PASSWORD=secure_password
      - EMAIL_SENDER_HOST=smtp.example.com
    command: rq worker --url redis://redis:6379 -c worker-settings

  redis:
    image: redis
    ports:
      - "6379:6379"

Tag summary

Content type

Image

Digest

sha256:0a9e72171

Size

3.9 GB

Last updated

over 3 years ago

docker pull jdreinhardt/waas