- Prerequiste are a Windows computer with one or several Nvidia gpu installed
- Install docker desktop if you don't have it already installed : Docker desktop
- Download latest client software : bitcoin-puzzle-worker releases then create installation directory and unzip file
- Setup .env files : for details see Setup .env files
- Setup docker-compose.yml : for details see Setup docker-compose.yml
- Install and start Portainer : open a command line prompt in the install dir and type : Portainer is an external tool that will help you to manage the stack (stop/start containers, see logs) or execute shell inside containers. It can be reached on a Web browser localhost port 9000
Code: Select all
docker volume create portainer_data docker run -d -p 8000:8000 -p 9443:9443 -p 9000:9000 --name portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce:latest
- Start docker stack : open a command line prompt in the install dir and type :
Code: Select all
docker-compose up -d