chore: add shebang to shell scripts

This commit is contained in:
Tanvir
2024-01-09 13:21:36 +06:00
parent d71e3c9d82
commit e6e05d4641
2 changed files with 4 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
#!/bin/bash
docker rm -f ollama || true
docker pull ollama/ollama
# CPU Only

2
run.sh
View File

@@ -1,3 +1,5 @@
#!/bin/bash
docker build -t ollama-webui .
docker stop ollama-webui || true
docker rm ollama-webui || true