Skip to content

Commit de4cac4

Browse files
authored
Merge pull request #75 from OpenBankProject/karmaking-2
add docker compose file
2 parents 793f5a0 + 50e0a72 commit de4cac4

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.env-docker.example

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<same as .env.example, adapt the following:>
2+
VITE_OBP_REDIS_URL=redis://host.docker.internal:6379

dockercompose.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
services:
2+
backend:
3+
image: "docker.io/openbankproject/api-explorer-ii:latest"
4+
ports:
5+
- "8085:8085"
6+
env_file:
7+
- /path/to/.env-docker
8+
extra_hosts:
9+
- "host.docker.internal:host-gateway"
10+
11+
frontend:
12+
image: "docker.io/openbankproject/api-explorer-ii-nginx:latest"
13+
env_file:
14+
- /path/to/.env-docker
15+
ports:
16+
- "8095:8080"

0 commit comments

Comments
 (0)