Unofficial multi-arch builds for Whisper as a Service
1.1K
Unofficial builds for Whisper as a Service.
latest is built from the latest updates on the main branch from the source repositoryThe easiest way to get started is to run using docker-compose
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"
Content type
Image
Digest
sha256:0a9e72171…
Size
3.9 GB
Last updated
over 3 years ago
docker pull jdreinhardt/waas