forked from bytechefhq/bytechef
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.src.yml
More file actions
32 lines (32 loc) · 809 Bytes
/
docker-compose.src.yml
File metadata and controls
32 lines (32 loc) · 809 Bytes
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
---
services:
postgres:
container_name: postgres
image: postgres:16-alpine
ports:
- "5432:5432"
volumes:
- storage_db:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=postgres
- POSTGRES_USER=postgres
- POSTGRES_DB=bytechef
bytechef:
container_name: bytechef
image: bytechef:latest
depends_on:
postgres:
condition: service_started
environment:
- BYTECHEF_DATASOURCE_URL=jdbc:postgresql://postgres:5432/bytechef
- BYTECHEF_DATASOURCE_USERNAME=postgres
- BYTECHEF_DATASOURCE_PASSWORD=postgres
- BYTECHEF_FEATURE_FLAGS
- BYTECHEF_SECURITY_REMEMBER-ME_KEY=e48keep1this1safe3ffb2
ports:
- "8080:8080"
volumes:
storage_db:
driver: "local"
storage_cache:
driver: "local"