Page 1 of 1

02a - Windows quick install

Posted: Fri Jan 05, 2024 2:53 am
by ogaland
  • 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
  • Install and start Portainer : open a command line prompt in the install dir and type :

    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
    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
  • Start docker stack : open a command line prompt in the install dir and type :

    Code: Select all

     docker-compose up -d