-
Notifications
You must be signed in to change notification settings - Fork 26
Running HurTrade
Faisal Thaheem edited this page Mar 20, 2020
·
1 revision
The easiest way to try out HurTrade is to use Docker. You will need
- Docker version 19.03.6
- docker-compose version 1.17.1
This guide was written with an ubuntu (18.04) server in mind. See Official Documentation on how to obtain docker for your platform.
Once you have docker set up, start with creating a new folder
mkdir hurtrade
cd hurtrade
Clone the hurtrade-docker repository and change into the cloned repository
git clone https://github.com/faisalthaheem/hurtrade-docker
cd hurtrade-docker
Pull the images, depending on your internet connection speed, this may take several minutes, for example on a 50Mbps FTTH connection, it takes around 1 minute
docker-compose pull --parallel
Finally, start the services
docker-compose up -d
To see the logs
docker-compose logs -f
To shutdown the services (replace down with "kill" to terminate by force)
docker-compose down