diff --git a/docker-compose.yml b/docker-compose.yml index f5aadb6..92d8a90 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -23,15 +23,6 @@ services: volumes: - *v1 - hlky: - <<: *base_service - profiles: ["hlky"] - build: ./services/hlky/ - image: sd-hlky:4 - environment: - - CLI_ARGS=--optimized-turbo - - USE_STREAMLIT=0 - auto: &automatic <<: *base_service profiles: ["auto"] @@ -47,6 +38,15 @@ services: environment: - CLI_ARGS=--no-half --precision full + hlky: + <<: *base_service + profiles: ["hlky"] + build: ./services/hlky/ + image: sd-hlky:5 + environment: + - CLI_ARGS=--optimized-turbo + - USE_STREAMLIT=0 + lstein: <<: *base_service profiles: ["lstein"] diff --git a/services/hlky/Dockerfile b/services/hlky/Dockerfile index b704f1f..d427b88 100644 --- a/services/hlky/Dockerfile +++ b/services/hlky/Dockerfile @@ -25,7 +25,7 @@ EOF RUN apt-get update && apt install libsndfile1 ffmpeg -y && apt-get clean -ARG BRANCH=master SHA=091520bed06f913c9f432f9f47ccbe22b46068d7 +ARG BRANCH=dev SHA=d8e61a5cd3c7a6f55a3f94852f54d7c76d29c2ce RUN <