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
Originally created by @madmike970 on GitHub (Feb 7, 2024).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/671
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
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 runc to remove the distro-packaged versions of Docker and its dependencies or alternative drop-in compatibles.
<!-- gh-comment-id:1932816993 -->
@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 runc` to remove the distro-packaged versions of Docker and its dependencies or alternative drop-in compatibles.
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.
<!-- gh-comment-id:1932872467 -->
@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.
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.
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.8 btw.
<!-- gh-comment-id:1932901832 -->
@justinh-rahb 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.
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.8` btw.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @madmike970 on GitHub (Feb 7, 2024).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/671
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.