-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
31 lines (30 loc) · 994 Bytes
/
docker-compose.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
services:
hoarder-to-pod:
image: ghcr.io/derekparks/hoardertopod:latest
ports:
- 5002:5002
env_file:
- .env
volumes:
- ./audio:/app/audio
- ${PWD}/hoarder_episodes.db:/app/hoarder_episodes.db # can be a volume or a bind mount
# - ./cover.jpg:/app/cover.jpg # uncomment to use a custom cover image
# Add this to the services section to use the TTS service on the same host
# flasktts:
# image: ghcr.io/derekparks/flasktts:latest
# container_name: flasktts
# restart: unless-stopped
# ports:
# - "5001:5001"
# volumes:
# - ./db:/FlaskTtS/db/
# - ./style2tts_workdir:/FlaskTtS/style2tts_workdir
# environment:
# - HUEY_DB_PATH=/FlaskTtS/db/huey.db
# deploy:
# resources:
# reservations:
# devices:
# - driver: nvidia
# count: all
# capabilities: [gpu]