Skip to content

Commit

Permalink
Merge pull request #43 from sangimed/feature/add-docker-compose
Browse files Browse the repository at this point in the history
Add docker compose file
  • Loading branch information
MatteoFasulo authored Aug 18, 2024
2 parents b5d9b60 + 189e6c9 commit b9d908b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
version: '3.8'

services:
whisper-tiktok:
build:
context: .
dockerfile: Dockerfile
ports:
- "8501:8501"
healthcheck:
test: ["CMD", "curl", "--fail", "http://localhost:8501/_stcore/health"]
interval: 30s
timeout: 10s
retries: 5
volumes:
- .:/app

0 comments on commit b9d908b

Please sign in to comment.