mirror of
https://github.com/open-webui/open-webui.git
synced 2026-07-17 07:46:16 -05:00
im a noob and cant get the docker compose command to work #276
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @madmike970 on GitHub (Feb 7, 2024).
so i had ollama set up as a vm in proxmox and couldnt get the webui installed on that system.. just started a bare ubuntu 23.1 vm and installed docker with
apt-get docker.io
tried to run
docker compose up -d --build
and got back
unknown shorthand flag: 'd' in -d
See 'docker --help'
i have no clue what im doin wrong any help is appreciated.. im just a construction worker trying to figure this stuff out lol
@justinh-rahb commented on GitHub (Feb 7, 2024):
Did you install Docker and Compose according to the official docs? They start off with
apt remove docker.io docker-doc docker-compose docker-compose-v2 podman-docker containerd runcto remove the distro-packaged versions of Docker and its dependencies or alternative drop-in compatibles.@mhussaincov94 commented on GitHub (Feb 7, 2024):
hi! sir newb sir!
try this for size.
sudo docker-compose up -d --build
there is a - between docker and compose
don't go removeing packages yet.
tell me if that works.
@justinh-rahb commented on GitHub (Feb 7, 2024):
In older versions of Compose, yes you'd invoke it with
docker-compose. Not so with newer versions since v2, ollama-webui expects version>=3.8btw.