From 8387ca862f7e6f71012451f4a9baed0426d533b7 Mon Sep 17 00:00:00 2001 From: jazzbox35 Date: Fri, 4 Sep 2026 09:07:11 -0700 Subject: [PATCH 1/6] Temporary change to hardcoded v0.1.19, temporary only to fix until permanent --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7fa466f9..6c0f2337 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ Ensure that you have [Docker installed](https://docs.docker.com/engine/install/) Run Omega using the next command: ``` -curl -fsSL https://raw.githubusercontent.com/singnet/Omega/refs/heads/main/scripts/omega | bash -s -- singularitynet/omega:latest + curl -fsSL https://github.com/singnet/Omega/raw/refs/tags/v0.1.19/scripts/omegaclaw | bash -s -- singularitynet/omega:v0.1.19 ``` To run a specific version of Omega set version in `TAG` environment variable and run the following command: @@ -82,12 +82,12 @@ export TAG=; curl -fsSL https://github.com/singnet/Omega/raw/refs/tags To stop the Omega Docker container: ``` -docker stop omega +docker stop omegaclaw ``` To restart the Omega Docker container: ``` -docker start omega +docker start omegaclaw ``` To reset Omega's memory: From 4445a817dfd67a795f1c3dfb7b305bba8bc59fa0 Mon Sep 17 00:00:00 2001 From: jazzbox35 Date: Fri, 4 Sep 2026 09:09:13 -0700 Subject: [PATCH 2/6] Temporary change to hardcoded v0.1.19, temporary only to fix until permanent (tweaked) --- README.md | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/README.md b/README.md index 6c0f2337..8b12cc36 100644 --- a/README.md +++ b/README.md @@ -72,12 +72,7 @@ Ensure that you have [Docker installed](https://docs.docker.com/engine/install/) Run Omega using the next command: ``` - curl -fsSL https://github.com/singnet/Omega/raw/refs/tags/v0.1.19/scripts/omegaclaw | bash -s -- singularitynet/omega:v0.1.19 -``` - -To run a specific version of Omega set version in `TAG` environment variable and run the following command: -``` -export TAG=; curl -fsSL https://github.com/singnet/Omega/raw/refs/tags/$TAG/scripts/omega | bash -s -- singularitynet/omega:$TAG +curl -fsSL https://github.com/singnet/Omega/raw/refs/tags/v0.1.19/scripts/omegaclaw | bash -s -- singularitynet/omega:v0.1.19 ``` To stop the Omega Docker container: @@ -90,11 +85,6 @@ To restart the Omega Docker container: docker start omegaclaw ``` -To reset Omega's memory: -``` -docker volume rm omega-memory -``` - ### Memory portability Memory export is disabled by default. See the [memory portability reference](./docs/reference-memory-portability.md) From ec171a3aacc00b905772a1648c03c3779858d4f0 Mon Sep 17 00:00:00 2001 From: Mike Archbold <41706294+jazzbox35@users.noreply.github.com> Date: Fri, 4 Sep 2026 14:53:07 -0700 Subject: [PATCH 3/6] Apply suggestion from @vsbogd Co-authored-by: Vitaly Bogdanov --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8b12cc36..1ef587e1 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ Ensure that you have [Docker installed](https://docs.docker.com/engine/install/) Run Omega using the next command: ``` -curl -fsSL https://github.com/singnet/Omega/raw/refs/tags/v0.1.19/scripts/omegaclaw | bash -s -- singularitynet/omega:v0.1.19 +export TAG=; curl -fsSL https://github.com/singnet/Omega/raw/refs/tags/$TAG/scripts/omegaclaw | bash -s -- singularitynet/omegaclaw:$TAG ``` To stop the Omega Docker container: From 8424137ac775d6acec84a98103b961f499057319 Mon Sep 17 00:00:00 2001 From: jazzbox35 Date: Fri, 4 Sep 2026 15:00:33 -0700 Subject: [PATCH 4/6] Temporary change to hardcoded v0.1.19, temporary only to fix until permanent (tweaked for tag version) --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 1ef587e1..040c3283 100644 --- a/README.md +++ b/README.md @@ -75,6 +75,11 @@ Run Omega using the next command: export TAG=; curl -fsSL https://github.com/singnet/Omega/raw/refs/tags/$TAG/scripts/omegaclaw | bash -s -- singularitynet/omegaclaw:$TAG ``` +To run a specific version of Omega set version in `TAG` environment variable and run the following command: +``` +export TAG=; curl -fsSL https://github.com/singnet/Omega/raw/refs/tags/$TAG/scripts/omegaclaw | bash -s -- singularitynet/omegaclaw:$TAG +``` + To stop the Omega Docker container: ``` docker stop omegaclaw From fca72223461c5bc04ef3340af9e049875b7ede94 Mon Sep 17 00:00:00 2001 From: jazzbox35 Date: Fri, 4 Sep 2026 15:06:27 -0700 Subject: [PATCH 5/6] Temporary change to hardcoded v0.1.19, temporary only to fix until permanent (tweaked for tag version) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 040c3283..33aa5a9e 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ Ensure that you have [Docker installed](https://docs.docker.com/engine/install/) Run Omega using the next command: ``` -export TAG=; curl -fsSL https://github.com/singnet/Omega/raw/refs/tags/$TAG/scripts/omegaclaw | bash -s -- singularitynet/omegaclaw:$TAG +curl -fsSL https://raw.githubusercontent.com/singnet/Omega/refs/heads/main/scripts/omega | bash -s -- singularitynet/omega:latest ``` To run a specific version of Omega set version in `TAG` environment variable and run the following command: From 09668ba5c7e59c890d6d793feb19507a63a3b67a Mon Sep 17 00:00:00 2001 From: jazzbox35 Date: Fri, 4 Sep 2026 15:13:10 -0700 Subject: [PATCH 6/6] Temporary change to hardcoded v0.1.19, temporary only to fix until permanent (tweaked for tag version) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 33aa5a9e..0886643b 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ Ensure that you have [Docker installed](https://docs.docker.com/engine/install/) Run Omega using the next command: ``` -curl -fsSL https://raw.githubusercontent.com/singnet/Omega/refs/heads/main/scripts/omega | bash -s -- singularitynet/omega:latest +curl -fsSL https://github.com/singnet/Omega/raw/refs/tags/v0.1.19/scripts/omegaclaw | bash -s -- singularitynet/omega:v0.1.19 ``` To run a specific version of Omega set version in `TAG` environment variable and run the following command: