fixed a lot of things and actually got it to work
All checks were successful
Build and Publish Docker Images / build-cuda (push) Successful in 6m12s
Build and Publish Docker Images / build-rocm (push) Successful in 6m33s
Build and Publish Docker Images / build-cpu (push) Successful in 18m51s

This commit is contained in:
2026-06-13 09:56:48 +00:00
parent a0ff64629c
commit 4ddf29aeb7
14 changed files with 215 additions and 137 deletions

View File

@@ -6,6 +6,8 @@ services:
- "10201:10200"
volumes:
- glados_model_cache:/data
- glados_hf_cache:/root/.cache/huggingface
- glados_nltk_data:/root/nltk_data
environment:
- MODEL_DIR=/data
- URI=tcp://0.0.0.0:10200
@@ -19,10 +21,14 @@ services:
- "10200:10200"
volumes:
- glados_model_cache:/data
- glados_hf_cache:/root/.cache/huggingface
- glados_nltk_data:/root/nltk_data
environment:
- MODEL_DIR=/data
- URI=tcp://0.0.0.0:10200
- DEVICE=cuda
- HALF=true
- PRELOAD=true
deploy:
resources:
reservations:
@@ -37,16 +43,26 @@ services:
container_name: glados-tts-rocm
ports:
- "10202:10200"
volumes:
- glados_model_cache:/data
environment:
- MODEL_DIR=/data
- URI=tcp://0.0.0.0:10200
- DEVICE=rocm
- HALF=true
- PRELOAD=true
- MIOPEN_FIND_MODE=1
- MIOPEN_DEBUG_CONV_GEMM=0
devices:
- /dev/kfd
- /dev/dri
volumes:
- glados_model_cache:/data
- glados_hf_cache:/root/.cache/huggingface
- glados_nltk_data:/root/nltk_data
- glados_miopen_cache:/root/.cache/miopen
restart: unless-stopped
volumes:
glados_model_cache:
glados_hf_cache:
glados_nltk_data:
glados_miopen_cache: