We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
there's an official build on quay.io: https://quay.io/repository/puzzle/cryptopus
For ubuntu:
sudo apt-get install docker-compose
mkdir -p ~/docker/cryptopus-postgresql && cd ~/docker/cryptopus-postgresql
wget https://raw.githubusercontent.com/puzzle/cryptopus/master/config/docker/postgresql/docker-compose.yml
wget https://raw.githubusercontent.com/puzzle/cryptopus/master/config/docker/postgresql/postgres-prod.env.tmpl -O postgres-prod.env
usermod -a -G docker yourlocalusername
docker-compose up
docker exec -it cryptopus /bin/bash
bundle exec rake db:setup
mkdir -p ~/docker/cryptopus-sqlite && cd ~/docker/cryptopus-sqlite
wget https://raw.githubusercontent.com/puzzle/cryptopus/master/docker-compose.yml
docker-compose up -d
docker exec -it cryptopus-sqlite /bin/bash
coming ...