From 31695d42e7310b423193a9bf33c60875089ff917 Mon Sep 17 00:00:00 2001 From: SG Date: Thu, 30 Nov 2023 11:03:29 -0700 Subject: [PATCH] use my own domain --- README.md | 2 +- docker/build_docker.sh | 4 ++-- docker/monkeyplug-docker.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 47fc5ca..f1e01c3 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ options: ### Docker -Alternately, a [Dockerfile](./docker/Dockerfile) is provided to allow you to run monkeyplug in Docker. You can pull either the `ghcr.io/mmguero/monkeyplug:small` or `ghcr.io/mmguero/monkeyplug:large` Docker images, or build with [`build_docker.sh`](./docker/build_docker.sh), then run [`monkeyplug-docker.sh`](./docker/monkeyplug-docker.sh) inside the directory where your audio files are located. +Alternately, a [Dockerfile](./docker/Dockerfile) is provided to allow you to run monkeyplug in Docker. You can pull either the `oci.guero.top/monkeyplug:small` or `oci.guero.top/monkeyplug:large` Docker images, or build with [`build_docker.sh`](./docker/build_docker.sh), then run [`monkeyplug-docker.sh`](./docker/monkeyplug-docker.sh) inside the directory where your audio files are located. ## Contributing diff --git a/docker/build_docker.sh b/docker/build_docker.sh index 6c94aca..b8bdc5d 100755 --- a/docker/build_docker.sh +++ b/docker/build_docker.sh @@ -18,9 +18,9 @@ export SCRIPT_PATH="$($DIRNAME $($REALPATH -e "${BASH_SOURCE[0]}"))" pushd "$SCRIPT_PATH"/.. >/dev/null 2>&1 if [[ -n "$VOSK_MODEL_URL" ]]; then - $ENGINE build -f docker/Dockerfile --build-arg VOSK_MODEL_URL="$VOSK_MODEL_URL" -t ghcr.io/mmguero/monkeyplug . + $ENGINE build -f docker/Dockerfile --build-arg VOSK_MODEL_URL="$VOSK_MODEL_URL" -t oci.guero.top/monkeyplug . else - $ENGINE build -f docker/Dockerfile -t ghcr.io/mmguero/monkeyplug:small . + $ENGINE build -f docker/Dockerfile -t oci.guero.top/monkeyplug:small . fi popd >/dev/null 2>&1 \ No newline at end of file diff --git a/docker/monkeyplug-docker.sh b/docker/monkeyplug-docker.sh index f3fcd8a..855cab0 100755 --- a/docker/monkeyplug-docker.sh +++ b/docker/monkeyplug-docker.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -export MONKEYPLUG_IMAGE="${MONKEYPLUG_IMAGE:-ghcr.io/mmguero/monkeyplug:small}" +export MONKEYPLUG_IMAGE="${MONKEYPLUG_IMAGE:-oci.guero.top/monkeyplug:small}" ENGINE="${CONTAINER_ENGINE:-docker}" if [[ "$ENGINE" == "podman" ]]; then CONTAINER_PUID=0