Installing Portainer On WSL
Links​
Notes​
-
Open WSL in Terminal
-
Create the portainer volume
docker volume create portainer_data
-
Install the portainer container
docker run -d -p 8000:8000 -p 9443:9443 --name portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce:2.21.5
-
To check that it is running
docker ps
- View the web interface go to https://localhost:9443
![]() |
---|
Portainer default landing page |
- Fill out the details and you should see the portainer community edition web interface.
![]() |
---|
Portainer Web interface |