Docker Files for BipIO Server
Before you can install & run BipIO, you'll also need to set up a data
directory to persist your data and logs.
(mongod
requires a minimum of 3GB free space on this volume).
mkdir ~/data
mkdir ~/data/db
mkdir ~/data/server_logs
mkdir ~/data/var
mkdir ~/data/etc
docker pull wotio/bipio
docker run -it -v ~/data:/data -p 5000:5000 wotio/bipio
[note: that during the build process you will be asked a series of prompts the first time the BipIO docker container is run to configure some of the basic settings.]
docker run -d -v ~/data:/data -p 5000:5000 wotio/bipio
If you're slightly more adventurous, you can build BipIO yourself:
Repo for the docker container is available here
Repo for the Bip.IO Server is available here