Skip to content
Nik Wolfgramm edited this page Dec 20, 2019 · 13 revisions

Official Docker Image

there's an official build on dockerhub: https://hub.docker.com/r/puzzle/cryptopus/

tag purpose description
latest testing / dev built from master branch which includes most recent but maybe unstable features
stable production built from stable branch with most recent tested/stable features

Run with Mysql

For ubuntu:

  1. Install Docker
  2. Install docker-compose: sudo apt-get install docker-compose
  3. mkdir -p ~/docker/cryptopus-mysql && cd ~/docker/cryptopus-mysql
  4. wget https://raw.githubusercontent.com/puzzle/cryptopus/master/config/docker/mysql/docker-compose.yml
  5. wget https://raw.githubusercontent.com/puzzle/cryptopus/master/config/docker/mysql/mysql-prod.env.tmpl -O mysql-prod.env
  6. edit mysql-prod.env
  7. docker-compose up -d
  8. docker exec -it cryptopus /bin/bash
  9. bundle exec rake db:setup
  10. http://localhost:8080

Run with Sqlite

For ubuntu:

  1. Install Docker
  2. Install docker-compose: sudo apt-get install docker-compose
  3. mkdir -p ~/docker/cryptopus-sqlite && cd ~/docker/cryptopus-sqlite
  4. wget https://raw.githubusercontent.com/puzzle/cryptopus/master/docker-compose.yml
  5. docker-compose up -d
  6. docker exec -it cryptopus-sqlite /bin/bash
  7. bundle exec rake db:setup
  8. http://localhost:8080

Development Image

coming ...

Clone this wiki locally