22 lines
486 B
YAML
22 lines
486 B
YAML
version: '3'
|
|
|
|
services:
|
|
postgres:
|
|
image: pgvector/pgvector:pg16
|
|
healthcheck:
|
|
test: [ "CMD", "pg_isready", "-q", "-d", "postgres", "-U", "root" ]
|
|
timeout: 45s
|
|
interval: 10s
|
|
retries: 10
|
|
restart: always
|
|
environment:
|
|
- POSTGRES_USER=root
|
|
- POSTGRES_PASSWORD=Qwerty123...
|
|
- APP_DB_USER=docker
|
|
- APP_DB_PASS=docker
|
|
- APP_DB_NAME=docker
|
|
volumes:
|
|
- ./db:/docker-entrypoint-initdb.d/
|
|
ports:
|
|
- 5432:5432
|