mirror of
https://github.com/DrewThomasson/ebook2audiobook.git
synced 2026-01-10 06:18:02 -05:00
26 lines
534 B
YAML
26 lines
534 B
YAML
x-gpu-enabled: &gpu-enabled
|
|
devices:
|
|
- driver: nvidia
|
|
count: all
|
|
capabilities:
|
|
- gpu
|
|
|
|
x-gpu-disabled: &gpu-disabled
|
|
devices: []
|
|
|
|
services:
|
|
ebook2audiobookxtts:
|
|
image: athomasson2/ebook2audiobook
|
|
platform: linux/amd64
|
|
tty: true
|
|
stdin_open: true
|
|
ports:
|
|
- 7860:7860
|
|
command: python app.py
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
<<: *gpu-disabled # change this to gpu-enabled if you have an NVIDIA gpu
|
|
volumes:
|
|
- ./:/home/user/app
|