-
Notifications
You must be signed in to change notification settings - Fork 377
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update x app template #23
Conversation
New and removed dependencies detected. Learn more about Socket for GitHub ↗︎
🚮 Removed packages: npm/@vechain/[email protected]), npm/@vechain/[email protected]), npm/@vechain/[email protected]), npm/[email protected]), npm/[email protected]), npm/[email protected]), npm/[email protected]), npm/[email protected]), npm/[email protected]), npm/[email protected]), npm/[email protected]), npm/[email protected]), npm/[email protected]), npm/[email protected]), npm/[email protected]), npm/[email protected]), npm/[email protected]), npm/[email protected]), npm/[email protected]), npm/[email protected]), npm/[email protected]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bravo, left a small comment for adding insight and inspector in the docker-compose
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's add inspector and insight here as well
services:
thor-solo:
image: vechain/thor:v2.1.3
hostname: thor-solo
container_name: thor-solo
user: root
environment:
- DOCKER=1
entrypoint:
[
"/bin/sh",
"-c",
"apk update && apk upgrade && apk add curl && thor solo --on-demand --persist --data-dir /data/thor --api-addr 0.0.0.0:8669 --api-cors '*' --verbosity 3",
]
ports:
- "8669:8669"
healthcheck:
test: curl --fail 0.0.0.0:8669/blocks/0 || exit 1
interval: "2s"
retries: 30
volumes:
- thor-data:/data/thor
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
volumes:
thor-data:
driver: local
name: thor-data
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done!
Update X-APP-TEMPLATE
Changes Introduced
Removal of reCAPTCHA:
Fixing Thor Solo Startup Issue:
Fixing Missing GPT Version:
Deployment Script Improvements:
README Update: