Skip to main content

Docker

The application can be installed through docker.

Docker-compose Setup

  1. Install docker
  2. Install docker compose
  3. Download this repo via git.
git clone https://github.com/UniversalDot/compose-service.git
  1. Navigate inside the folder...
cd compose-service
  1. 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.

  1. 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
  1. 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