Skip to content

Commit fe96e16

Browse files
committed
964 - Add docker-compose.src.yml to run locally built docker image
1 parent 2519730 commit fe96e16

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

docker-compose.src.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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"

0 commit comments

Comments
 (0)