-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
53 lines (48 loc) · 1.05 KB
/
docker-compose.yml
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
46
47
48
49
50
51
52
53
version: "3.8"
services:
# Postgres
postgres:
image: postgres:13
volumes:
- db_data:/var/lib/postgresql/data
ports:
- 5432:5432
restart: always
environment:
- POSTGRES_PASSWORD=postgres
networks:
- app
# BoxyHQ SAML Jackson
jackson:
image: "boxyhq/jackson:1.7.5"
platform: linux/amd64
depends_on:
- postgres
ports:
- 5225:5225
environment:
- JACKSON_API_KEYS=secret #Don't use this secret in production
- DB_ENGINE=sql
- DB_TYPE=postgres
- DB_URL=postgres://postgres:postgres@postgres:5432/postgres
- NEXTAUTH_SECRET=secret #Don't use this secret in production
- NEXTAUTH_URL=http://localhost:5225
networks:
- app
# Cerbos
cerbos:
image: ghcr.io/cerbos/cerbos:0.24.0
# platform: linux/amd64
ports:
- 3592:3592
- 3593:3593
volumes:
- ./cerbos/config:/config
- ./cerbos/policies:/policies
command: server --config=/config/conf.yaml
networks:
- app
networks:
app:
volumes:
db_data: