Skip to content

Commit

Permalink
feat: adding inspector and insight
Browse files Browse the repository at this point in the history
  • Loading branch information
Valazan committed Sep 6, 2024
1 parent 4e7a7e4 commit f945048
Show file tree
Hide file tree
Showing 3 changed files with 454 additions and 425 deletions.
2 changes: 1 addition & 1 deletion apps/contracts/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ SHELL := /bin/bash

# Thor solo
solo-up: #@ Start Thor solo
docker compose up -d --wait thor-solo
docker compose up -d
solo-down: #@ Stop Thor solo
docker compose down
29 changes: 29 additions & 0 deletions apps/contracts/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,32 @@ services:
interval: 5s
timeout: 10s
retries: 10
networks:
- vechain-thor

insight:
image: ghcr.io/vechain/insight-app:master
hostname: insight
container_name: insight
environment:
- VUE_APP_SOLO_URL=http://localhost:8669
ports:
- "8080:80"
networks:
- vechain-thor

inspector:
image: ghcr.io/vechain/inspector-app:master
hostname: inspector
container_name: inspector
environment:
- VUE_APP_SOLO_URL=http://localhost:8669
ports:
- "8081:80"
networks:
- vechain-thor

networks:
vechain-thor:
driver: bridge
name: vechain-thor
Loading

0 comments on commit f945048

Please sign in to comment.