-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
235 lines (222 loc) · 6.51 KB
/
docker-compose.yml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
---
version: "3.9"
x-podman:
&podman
userns_mode: keep-id
security_opt:
- "label=disable"
x-logging:
&default-logging
driver: json-file
options:
mode: non-blocking
max-buffer-size: 4m
volumes:
ovos_tts_piper_cache:
name: ovos_tts_piper_cache
driver: local
ovos_tts_piper_gradio_cache:
name: ovos_tts_piper_gradio_cache
driver: local
ovos_tts_mimic3_cache:
name: ovos_tts_mimic3_cache
driver: local
ovos_tts_mimic3_gradio_cache:
name: ovos_tts_mimic3_gradio_cache
driver: local
ovos_tts_mimic_cache:
name: ovos_tts_mimic_cache
driver: local
ovos_tts_mimic_gradio_cache:
name: ovos_tts_mimic_gradio_cache
driver: local
ovos_tts_sam_cache:
name: ovos_tts_sam_cache
driver: local
ovos_tts_sam_gradio_cache:
name: ovos_tts_sam_gradio_cache
driver: local
ovos_tts_google_tx_cache:
name: ovos_tts_google_tx_cache
driver: local
ovos_tts_google_tx_gradio_cache:
name: ovos_tts_google_tx_gradio_cache
driver: local
ovos_tts_matxa_cache:
name: ovos_tts_matxa_cache
driver: local
ovos_tts_matxa_gradio_cache:
name: ovos_tts_matxa_gradio_cache
driver: local
ovos_tts_nos_cache:
name: ovos_tts_nos_cache
driver: local
ovos_tts_nos_gradio_cache:
name: ovos_tts_nos_gradio_cache
driver: local
services:
ovos_tts_piper:
<<: *podman
container_name: ovos_tts_piper
hostname: ovos_tts_piper
restart: unless-stopped
image: docker.io/smartgic/ovos-tts-server-piper:${VERSION}
logging: *default-logging
pull_policy: always
tty: true
environment:
TZ: $TZ
ports:
- "8089:9666"
volumes:
- ${CONFIG_FOLDER}:/home/${OVOS_USER}/.config/mycroft:ro,z
- ovos_tts_piper_cache:/home/${OVOS_USER}/.local/share/piper_tts
- ovos_tts_piper_gradio_cache:/home/${OVOS_USER}/gradio_cached_examples
ovos_tts_mimic3:
<<: *podman
container_name: ovos_tts_mimic3
hostname: ovos_tts_mimic3
restart: unless-stopped
image: docker.io/smartgic/ovos-tts-server-mimic3:${VERSION}
logging: *default-logging
pull_policy: always
tty: true
environment:
TZ: $TZ
ports:
- "8090:9666"
volumes:
- ${CONFIG_FOLDER}:/home/${OVOS_USER}/.config/mycroft:ro,z
- ovos_tts_mimic3_cache:/home/${OVOS_USER}/.local/share/mycroft/mimic3
- ovos_tts_mimic3_gradio_cache:/home/${OVOS_USER}/gradio_cached_examples
ovos_tts_mimic:
<<: *podman
container_name: ovos_tts_mimic
hostname: ovos_tts_mimic
restart: unless-stopped
image: docker.io/smartgic/ovos-tts-server-mimic:${VERSION}
logging: *default-logging
pull_policy: always
tty: true
environment:
TZ: $TZ
ports:
- "8091:9666"
volumes:
- ${CONFIG_FOLDER}:/home/${OVOS_USER}/.config/mycroft:ro,z
- ovos_tts_mimic_cache:/home/${OVOS_USER}/.cache/mycroft/MimicTTSPlugin
- ovos_tts_mimic_gradio_cache:/home/${OVOS_USER}/gradio_cached_examples
ovos_tts_google_tx:
<<: *podman
container_name: ovos_tts_google_tx
hostname: ovos_tts_google_tx
restart: unless-stopped
image: docker.io/smartgic/ovos-tts-server-google-tx:${VERSION}
logging: *default-logging
pull_policy: always
tty: true
environment:
TZ: $TZ
ports:
- "8092:9666"
volumes:
- ${CONFIG_FOLDER}:/home/${OVOS_USER}/.config/mycroft:ro,z
- ovos_tts_google_tx_cache:/home/${OVOS_USER}/.cache/mycroft/GoogleTranslateTTS
- ovos_tts_google_tx_gradio_cache:/home/${OVOS_USER}/gradio_cached_examples
ovos_tts_sam:
<<: *podman
container_name: ovos_tts_sam
hostname: ovos_tts_sam
restart: unless-stopped
image: docker.io/smartgic/ovos-tts-server-sam:${VERSION}
logging: *default-logging
pull_policy: always
tty: true
environment:
TZ: $TZ
ports:
- "8094:9666"
volumes:
- ${CONFIG_FOLDER}:/home/${OVOS_USER}/.config/mycroft:ro,z
- ovos_tts_sam_cache:/home/${OVOS_USER}/.cache/mycroft/SAMTTS
- ovos_tts_sam_gradio_cache:/home/${OVOS_USER}/gradio_cached_examples
ovos_tts_matxa:
<<: *podman
container_name: ovos_tts_matxa
hostname: ovos_tts_matxa
restart: unless-stopped
image: docker.io/smartgic/ovos-tts-server-matxa:${VERSION}
logging: *default-logging
pull_policy: always
tty: true
environment:
TZ: $TZ
ports:
- "8095:9666"
volumes:
- ${CONFIG_FOLDER}:/home/${OVOS_USER}/.config/mycroft:ro,z
- ovos_tts_matxa_cache:/home/${OVOS_USER}/.local/share/OpenVoiceOS
- ovos_tts_matxa_gradio_cache:/home/${OVOS_USER}/gradio_cached_examples
ovos_tts_nos:
<<: *podman
container_name: ovos_tts_nos
hostname: ovos_tts_nos
restart: unless-stopped
image: docker.io/smartgic/ovos-tts-server-nos:${VERSION}
logging: *default-logging
pull_policy: always
tty: true
environment:
TZ: $TZ
ports:
- "8096:9666"
volumes:
- ${CONFIG_FOLDER}:/home/${OVOS_USER}/.config/mycroft:ro,z
- ovos_tts_nos_cache:/home/${OVOS_USER}/.local/share/nos_tts_models
- ovos_tts_nos_gradio_cache:/home/${OVOS_USER}/gradio_cached_examples
ovos_tts_coqui:
<<: *podman
container_name: ovos_tts_coqui
hostname: ovos_tts_coqui
restart: unless-stopped
image: docker.io/smartgic/ovos-tts-server-coqui:${VERSION}
logging: *default-logging
pull_policy: always
tty: true
entrypoint: ovos-tts-server --engine coqui
environment:
TZ: $TZ
ports:
- "8093:9666"
volumes:
- ${CONFIG_FOLDER}:/home/${OVOS_USER}/.config/mycroft:ro,z
# - ovos_tts_google_tx_cache:/home/${OVOS_USER}/.cache/mycroft/GoogleTranslateTTS
# - ovos_tts_google_tx_gradio_cache:/home/${OVOS_USER}/gradio_cached_examples
ovos_tts_bark:
<<: *podman
container_name: ovos_tts_bark
hostname: ovos_tts_bark
restart: unless-stopped
image: docker.io/smartgic/ovos-tts-server-bark:${VERSION}
logging: *default-logging
pull_policy: always
tty: true
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities:
- gpu
environment:
TZ: $TZ
CT2_CUDA_ALLOW_FP16: 1
SUNO_USE_SMALL_MODELS: "True"
SUNO_OFFLOAD_CPU: "True"
ports:
- "8094:9666"
volumes:
- ${CONFIG_FOLDER}:/home/${OVOS_USER}/.config/mycroft:ro,z
# - ovos_tts_google_tx_cache:/home/${OVOS_USER}/.cache/mycroft/GoogleTranslateTTS
# - ovos_tts_google_tx_gradio_cache:/home/${OVOS_USER}/gradio_cached_examples