We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d05e3cd commit 7e0ab44Copy full SHA for 7e0ab44
docker-compose.yaml
@@ -0,0 +1,19 @@
1
+version: "3.8"
2
+services:
3
+ permify:
4
+ image: "ghcr.io/permify/permify"
5
+ command: "serve --database-engine postgres --database-uri postgres://postgres:secret@database:5432 --database-name permify --database-pool-max 20"
6
+ restart: "always"
7
+ ports:
8
+ - "3476:3476"
9
+ - "3478:3478"
10
+ depends_on:
11
+ - "database"
12
+
13
+ database:
14
+ image: "postgres"
15
16
+ - "5432:5432"
17
+ environment:
18
+ - "POSTGRES_PASSWORD=secret"
19
+ - "POSTGRES_DB=permify"
0 commit comments