Skip to content

Commit

Permalink
test: docker compose file for testing (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
rflechtner committed Mar 22, 2022
1 parent 3e13344 commit 4c2e784
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ npm-debug.log
Dockerfile
.dockerignore
.git
.gitignore
.gitignore
.github
test-docker-compose.yml
24 changes: 24 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
version: '3.5'

networks:
default:
name: universal-resolver

services:
uni-resolver-web:
image: universalresolver/uni-resolver-web:latest
ports:
- '8080:8080'
kilt-did-driver:
image: kiltprotocol/kilt-did-driver:develop
build: .
environment:
KILT_BLOCKCHAIN_NODE: ${KILT_BLOCKCHAIN_NODE}
ports:
- '8094:8080'
uni-resolver-frontend:
image: universalresolver/universal-resolver-frontend:latest
ports:
- 7081:7081
environment:
- BACKEND_URL=http://127.0.0.1:8080/

0 comments on commit 4c2e784

Please sign in to comment.