refactor(run.sh): update with port variables

This commit is contained in:
Tanvir 2024-01-09 13:43:55 +06:00
parent 8bb68cfcae
commit fd33f68f28
No known key found for this signature in database
GPG Key ID: 938B0F2643FE5107
1 changed files with 3 additions and 1 deletions

4
run.sh
View File

@ -2,12 +2,14 @@
image_name="ollama-webui"
container_name="ollama-webui"
host_port=3000
container_port=8080
docker build -t "$image_name" .
docker stop "$container_name" &>/dev/null || true
docker rm "$container_name" &>/dev/null || true
docker run -d -p 3000:8080 \
docker run -d -p "$host_port":"$container_port" \
--add-host=host.docker.internal:host-gateway \
-v "${image_name}:/app/backend/data" \
--name "$container_name" \