-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdocker-compose.uat.yaml
More file actions
35 lines (33 loc) · 1.07 KB
/
docker-compose.uat.yaml
File metadata and controls
35 lines (33 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# UAT environment setup: Two PostgreSQL instances + Valkey cache
# Usage: docker compose -f docker-compose.uat.yaml up -d
services:
postgres-uat:
image: pgvector/pgvector:pg18
container_name: zuugle-postgres-uat
restart: always
ports:
- "127.0.0.1:5434:5432"
environment:
POSTGRES_DB: zuugle_suchseite_uat
POSTGRES_USER: postgres
POSTGRES_PASSWORD: docker
volumes:
- ./database.sql:/docker-entrypoint-initdb.d/init.sql
postgres-dev:
image: pgvector/pgvector:pg18
container_name: zuugle-postgres-dev
restart: always
ports:
- "127.0.0.1:5433:5432"
environment:
POSTGRES_DB: zuugle_suchseite_dev
POSTGRES_USER: postgres
POSTGRES_PASSWORD: docker
volumes:
- ./database.sql:/docker-entrypoint-initdb.d/init.sql
valkey:
image: valkey/valkey:8-alpine
container_name: zuugle-valkey
restart: always
ports:
- "127.0.0.1:6379:6379"