reface to openteam

This commit is contained in:
Sakurasan
2025-04-16 18:01:27 +08:00
parent bc223d6530
commit e7ffc9e8b9
92 changed files with 5345 additions and 1273 deletions

View File

@@ -0,0 +1,27 @@
# CREATE EXTENSION vector;
# SELECT * FROM pg_extension;
# SELECT * FROM pg_available_extensions;
version: '3.9'
services:
pg:
image: pgvector/pgvector:pg17
# image: paradedb/paradedb
container_name: pg
restart: always
# network_mode: host
ports:
- 5432:5432
environment:
POSTGRES_DB: openteam
POSTGRES_USER: openteam
POSTGRES_PASSWORD: openteam
volumes:
- $PWD/pgdata:/var/lib/postgresql/data
# adminer:
# image: adminer
# restart: always
# ports:
# - 8080:8080