From f16026e8a196740303d8f262af06c8f26af16007 Mon Sep 17 00:00:00 2001 From: nihilist Date: Mon, 21 Apr 2025 16:03:12 +0200 Subject: [PATCH] fix docker-compose cmds --- opsec/openwebuilocalllms/index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/opsec/openwebuilocalllms/index.html b/opsec/openwebuilocalllms/index.html index 970c60d..09acc6f 100644 --- a/opsec/openwebuilocalllms/index.html +++ b/opsec/openwebuilocalllms/index.html @@ -332,7 +332,7 @@ If you want to expose Open WebUI via Tor to access it remotely, you should have

Docker Setup

Install Docker from Debian repositories using apt. After installation, add your user to the docker group:

-
oxeo@andromeda:~$ sudo apt install docker.io
+
oxeo@andromeda:~$ sudo apt install docker.io docker-compose
 oxeo@andromeda:~$ sudo /sbin/usermod -aG docker oxeo
 oxeo@andromeda:~$ sudo systemctl enable docker
 
@@ -508,7 +508,7 @@ volumes:

To start the stack:

oxeo@andromeda:~$ cd ~/openwebui-stack
-oxeo@andromeda:~/openwebui-stack$ docker compose up -d
+oxeo@andromeda:~/openwebui-stack$ docker-compose up -d
 
@@ -1277,7 +1277,7 @@ Only output the translation, nothing else.

@@ -1371,7 +1371,7 @@ The host.docker.internal domain is resolved from within the container to

Once that's done, we can restart the container and go to Open WebUI GUI administrator settings once again. -

oxeo@andromeda:~$ docker compose down; docker compose up -d
+
oxeo@andromeda:~$ docker-compose down; docker-compose up -d