From 400aa31d19369181efd23aff6e54f24ffe96e577 Mon Sep 17 00:00:00 2001 From: albe873 <93786475+albe873@users.noreply.github.com> Date: Fri, 13 Dec 2024 23:22:49 +0100 Subject: [PATCH] use the already built image --- docker-compose.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 3be13ef..1be4649 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,18 +1,17 @@ services: whisper: + image: rocm-wyoming-whisper container_name: whisper restart: unless-stopped - build: - context: . group_add: - video volumes: - - ./data:/data + - whisper-data:/data command: - --download-dir - /data - - --language - - en + - --model + - medium - --device - cuda ports: @@ -20,3 +19,6 @@ services: devices: - "/dev/dri" - "/dev/kfd" + +volumes: + whisper-data: \ No newline at end of file