From 9bec102f385ba8d535bbac7d88097c45c5aad0f2 Mon Sep 17 00:00:00 2001 From: valiantlynx <86688436+valiantlynx@users.noreply.github.com> Date: Thu, 27 Feb 2025 19:22:49 +0100 Subject: [PATCH] Update README.md docker compose is now not a dep. cause compose has been inbuilt in docker for a couple years now --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 774a5d8..3115422 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,7 @@ Welcome to the Ollama Docker Compose Setup! This project simplifies the deployme ### Prerequisites Make sure you have the following prerequisites installed on your machine: -- Docker -- Docker Compose +- Docker (should also be able to run docker compose ...) #### GPU Support (Optional) @@ -51,12 +50,12 @@ Start Ollama and its dependencies using Docker Compose: if gpu is configured ```bash -docker-compose -f docker-compose-ollama-gpu.yaml up -d +docker compose -f docker-compose-ollama-gpu.yaml up -d ``` else ```bash -docker-compose up -d +docker compose up -d ``` Visit [http://localhost:8080](http://localhost:8080) in your browser to access Ollama-webui. @@ -78,7 +77,7 @@ if you have vs code and the `Remote Development“ extension simply opening this To stop the containers and remove the network: ```bash -docker-compose down +docker compose down ``` ## Contributing