mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-15 22:47:59 +00:00
docker compose commands
This commit is contained in:
parent
bd0622ef10
commit
8cd7e406c0
9 changed files with 129 additions and 0 deletions
15
docker/pgvector/postgres/postgres.Dockerfile
Normal file
15
docker/pgvector/postgres/postgres.Dockerfile
Normal file
|
@ -0,0 +1,15 @@
|
|||
# This is installing the pgvector extension for postgres
|
||||
FROM postgres:latest
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
build-essential \
|
||||
git \
|
||||
postgresql-server-dev-all \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
WORKDIR /tmp
|
||||
RUN git clone https://github.com/pgvector/pgvector.git
|
||||
|
||||
WORKDIR /tmp/pgvector
|
||||
RUN make
|
||||
RUN make install
|
Loading…
Add table
Add a link
Reference in a new issue