Compare commits

..

1 Commits

Author SHA1 Message Date
Artem-Darius Weber 072a8f999b added init sh
5 months ago

@ -4,7 +4,7 @@ import pyaudio
import time
# Server settings
SERVER_IP = '192.168.1.31' # Replace with your server's IP address
SERVER_IP = '81.94.159.212' # Replace with your server's IP address
DATA_SERVER_PORT = 8012
AUDIO_SERVER_PORT = 65432

Binary file not shown.

Before

Width:  |  Height:  |  Size: 217 KiB

@ -22,8 +22,11 @@ services:
tty: true
deploy:
resources:
reservations: {}
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]
ollama:
volumes:
- ./ollama/ollama:/root/.ollama
@ -34,8 +37,11 @@ services:
- OLLAMA_KEEP_ALIVE=24h
deploy:
resources:
reservations: {}
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]
ollama-webui:
image: ghcr.io/open-webui/open-webui:main
volumes:
@ -53,3 +59,4 @@ services:
- WEBUI_SECRET_KEY=t0p-s3cr3t
extra_hosts:
- host.docker.internal:host-gateway

@ -0,0 +1,10 @@
sudo apt update
sudo apt install ca-certificates curl gnupg lsb-release
sudo mkdir -p /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt update
sudo apt install docker-ce docker-ce-cli containerd.io docker-compose-plugin
sudo usermod -aG docker $USER
Loading…
Cancel
Save