mirror of
https://gitee.com/270580156/weiyu.git
synced 2026-05-18 05:08:02 +00:00
31 lines
975 B
YAML
31 lines
975 B
YAML
version: '0.3.5'
|
|
services:
|
|
# postgres:
|
|
# image: ankane/pgvector:v0.5.0
|
|
# restart: always
|
|
# environment:
|
|
# - POSTGRES_USER=postgres
|
|
# - POSTGRES_PASSWORD=postgres
|
|
# - POSTGRES_DB=vector_store
|
|
# - PGPASSWORD=postgres
|
|
# logging:
|
|
# options:
|
|
# max-size: 10m
|
|
# max-file: "3"
|
|
# ports:
|
|
# - '5432:5432'
|
|
# healthcheck:
|
|
# test: "pg_isready -U postgres -d vector_store"
|
|
# interval: 2s
|
|
# timeout: 20s
|
|
# retries: 10
|
|
# pgadmin:
|
|
# container_name: pgadmin_container
|
|
# image: dpage/pgadmin4
|
|
# environment:
|
|
# PGADMIN_DEFAULT_EMAIL: ${PGADMIN_DEFAULT_EMAIL:-pgadmin4@pgadmin.org}
|
|
# PGADMIN_DEFAULT_PASSWORD: ${PGADMIN_DEFAULT_PASSWORD:-admin}
|
|
# volumes:
|
|
# - ./servers.json:/pgadmin4/servers.json
|
|
# ports:
|
|
# - "${PGADMIN_PORT:-5050}:80" |