Skip to content

Commit

Permalink
Merge pull request #75 from OpenBankProject/karmaking-2
Browse files Browse the repository at this point in the history
add docker compose file
  • Loading branch information
simonredfern authored Dec 18, 2024
2 parents 793f5a0 + 50e0a72 commit de4cac4
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .env-docker.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<same as .env.example, adapt the following:>
VITE_OBP_REDIS_URL=redis://host.docker.internal:6379
16 changes: 16 additions & 0 deletions dockercompose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
services:
backend:
image: "docker.io/openbankproject/api-explorer-ii:latest"
ports:
- "8085:8085"
env_file:
- /path/to/.env-docker
extra_hosts:
- "host.docker.internal:host-gateway"

frontend:
image: "docker.io/openbankproject/api-explorer-ii-nginx:latest"
env_file:
- /path/to/.env-docker
ports:
- "8095:8080"

0 comments on commit de4cac4

Please sign in to comment.