File tree 1 file changed +32
-0
lines changed
1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ services :
3
+ postgres :
4
+ container_name : postgres
5
+ image : postgres:14-alpine
6
+ ports :
7
+ - " 5432:5432"
8
+ volumes :
9
+ - storage_db:/var/lib/postgresql/data
10
+ environment :
11
+ - POSTGRES_PASSWORD=postgres
12
+ - POSTGRES_USER=postgres
13
+ - POSTGRES_DB=bytechef
14
+ bytechef :
15
+ container_name : bytechef
16
+ image : bytechef:latest
17
+ depends_on :
18
+ postgres :
19
+ condition : service_started
20
+ environment :
21
+ - BYTECHEF_DATASOURCE_URL=jdbc:postgresql://postgres:5432/bytechef
22
+ - BYTECHEF_DATASOURCE_USERNAME=postgres
23
+ - BYTECHEF_DATASOURCE_PASSWORD=postgres
24
+ - BYTECHEF_FEATURE_FLAGS
25
+ - BYTECHEF_SECURITY_REMEMBER-ME_KEY=e48keep1this1safe3ffb2
26
+ ports :
27
+ - " 8080:8080"
28
+ volumes :
29
+ storage_db :
30
+ driver : " local"
31
+ storage_cache :
32
+ driver : " local"
You can’t perform that action at this time.
0 commit comments