Docker
The application can be installed through docker.
Docker-compose Setup
- Install docker
- Install docker compose
- Download this repo via git.
git clone https://github.com/UniversalDot/compose-service.git
- Navigate inside the folder...
cd compose-service
- Run docker-compose command
docker-compose up -d
Note: -d flag stands for “detached” mode. When passing the '-d' flag we are running our services in the background.
- Once docker-compose is up, navigate to the browser to open localhost on port 8000. This will open the substrate-front-end application in your browser.
http://localhost:8000
- If you are installing on the server, you have to provide correct Server IP by configuring the - PROVIDER_SOCKET=ws://127.0.0.1:9944 in the front-end start.sh script. After installing on the server, you can access the deployment at:
http://SERVERIP:8000