mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-03-12 11:02:37 +01:00
22 lines
551 B
YAML
22 lines
551 B
YAML
|
|
services:
|
||
|
|
ferretdb-postgres:
|
||
|
|
image: ghcr.io/ferretdb/postgres-documentdb:17-0.107.0-ferretdb-2.7.0
|
||
|
|
restart: on-failure
|
||
|
|
environment:
|
||
|
|
- POSTGRES_USER=ferretdb
|
||
|
|
- POSTGRES_PASSWORD=ferretdb
|
||
|
|
- POSTGRES_DB=postgres
|
||
|
|
volumes:
|
||
|
|
- ferretdb_data:/var/lib/postgresql/data
|
||
|
|
|
||
|
|
ferretdb:
|
||
|
|
image: ghcr.io/ferretdb/ferretdb:2.7.0
|
||
|
|
restart: on-failure
|
||
|
|
ports:
|
||
|
|
- "27020:27017"
|
||
|
|
environment:
|
||
|
|
- FERRETDB_POSTGRESQL_URL=postgres://ferretdb:ferretdb@ferretdb-postgres:5432/postgres
|
||
|
|
|
||
|
|
volumes:
|
||
|
|
ferretdb_data:
|