Sign inSign up

zuptalo/portainer

By zuptalo

Updated about 6 years ago

portainer 2.0.0 with support for kubernetes

Image
1

1.1K

zuptalo/portainer repository overview

portainer 2.0.0 with support for kubernetes

If you want to connect to the docker running on your local machine:
docker run -p 9000:9000 -p 8000:8000 -v "/var/run/docker.sock:/var/run/docker.sock" -d zuptalo/portainer
You can also use the following docker-compose.yml to make things even easier:

version: "3.8"

volumes:
  portainer-data:
    name: "portainer-data"

services:
  portainer:
    container_name: portainer
    image: zuptalo/portainer:latest
    restart: always
    ports:
      - 9000:9000
      - 8000:8000
    volumes:
      - portainer-data:/data/
      - /var/run/docker.sock:/var/run/docker.sock

Tag summary

Content type

Image

Digest

Size

83.9 MB

Last updated

about 6 years ago

docker pull zuptalo/portainer