MirrorNest
← Todas las guías

Portainer

Web UI for managing Docker and Kubernetes — containers, images, volumes, and stacks without the CLI.

Sistema: Any Docker hostInfrastructureDockerSitio oficial ↗Documentación oficial ↗
Esta guía se elaboró a partir de la documentación oficial de Portainer, enlazada arriba — verifica siempre ahí los nombres exactos de paquetes/versiones antes de ejecutar estos comandos en un servidor de producción, ya que las versiones de la distribución y del proyecto cambian con el tiempo.
  1. 1Create the persistent volume

    docker volume create portainer_data
  2. 2Run the Portainer CE 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:latest
  3. 3Log in

    Open https://your-server-ip:9443 — the first visit lets you set the admin password before anyone else can.

    Set the admin password within 5 minutes of the container starting, or Portainer disables initial setup as a safety measure and needs a container restart to try again.