-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
45 lines (41 loc) · 988 Bytes
/
docker-compose.yaml
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
36
37
38
39
40
41
42
43
44
45
services:
dev_pg:
image: postgres:latest
restart: always
ports:
- "34343:5432"
environment:
POSTGRES_USER: soccerbuddy
POSTGRES_PASSWORD: soccerbuddy
test_pg:
image: postgres:latest
restart: always
ports:
- "34344:5432"
volumes:
- type: tmpfs
target: /var/lib/postgresql/data
environment:
POSTGRES_USER: soccerbuddy
POSTGRES_PASSWORD: soccerbuddy
redis:
image: redis/redis-stack:latest
restart: always
ports:
- "6379:6379"
- "8001:8001"
permify_dev:
image: ghcr.io/permify/permify
restart: always
ports:
- "3476:3476"
- "3478:3478"
environment:
PERMIFY_DATABASE_ENGINE: "postgres"
PERMIFY_DATABASE_URI: "postgresql://soccerbuddy:soccerbuddy@permify_dev_db:5432/soccerbuddy"
permify_dev_db:
image: postgres:latest
restart: always
environment:
POSTGRES_USER: soccerbuddy
POSTGRES_PASSWORD: soccerbuddy