Unverified Commit fd33f68f authored by Tanvir's avatar Tanvir
Browse files

refactor(run.sh): update with port variables

parent 8bb68cfc
......@@ -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" \
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment