mirror of
https://github.com/tinode/chat.git
synced 2026-05-07 20:12:42 +00:00
25 lines
467 B
YAML
25 lines
467 B
YAML
version: '3.8'
|
|
|
|
x-postgres-tinode-env-vars: &postgres-tinode-env-vars
|
|
"STORE_USE_ADAPTER": "postgres"
|
|
|
|
services:
|
|
db:
|
|
image: postgres:15.2
|
|
container_name: postgres
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready"]
|
|
|
|
tinode-0:
|
|
environment:
|
|
<< : *postgres-tinode-env-vars
|
|
"WAIT_FOR": "postgres:5432"
|
|
|
|
tinode-1:
|
|
environment:
|
|
<< : *postgres-tinode-env-vars
|
|
|
|
tinode-2:
|
|
environment:
|
|
<< : *postgres-tinode-env-vars
|