loomchild / icoin

GNU Affero General Public License v3.0
0 stars 0 forks source link

icoin

Build Status

Deployment

The easiest way to deploy icoin and start playing with it is to use docker.

Create docker machine:

docker-machine create -d virtualbox dev
eval "$(docker-machine env dev)"

Deploy icoin and its dependencies:

cd deploy/dev
docker-compose up -d

Access icoin:

docker-machine ip dev

Take the IP address of your machine and go to IP:8080 to access the system and IP:8025 to access the emails. The ports can also be forwarded.

To execute icoin commands, you can enter the container:

docker exec -i -t dev_web_1 bash
./icoin.py db upgrade

Update docker images:

docker-compose pull