Return to Image List

portainer

portainer

Portainer is a lightweight management UI which allows you to easily manage your Docker host or Swarm cluster. Portainer is meant to be as simple to deploy as it is to use. It consists of a single container that can run on any Docker engine (Docker for Linux and Docker for Windows are supported). Portainer allows you to manage your Docker stacks, containers, images, volumes, networks and more ! It is compatible with the standalone Docker engine and with Docker Swarm.

See portainer.io for more information

This image is built by IBM to run on the IBM Z architecture and is not affiliated with any other community that provides a version of this image.


License

View license information here

As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).

As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.


Versions

Use the pull string below for the version of this image you require.
2.19.5 docker pull icr.io/ibmz/portainer@sha256:db475bbcb9fe674d86b784e31c8d50fef76fd2a3bc32d0c28da15e7d79b02a7c Vulnerability Report10-29-2024
2.13.1 docker pull icr.io/ibmz/portainer@sha256:dad440cc3d5c416e484d6c61acaf715d3020977d81999996dcc0af7a9ee78e72 Vulnerability Report10-29-2024
2.11.1 docker pull icr.io/ibmz/portainer@sha256:c4e6bc14adff4513f211890a2c07356d824e55ff932cb78b65d51e84c3b6123f Vulnerability Report10-29-2024
Version Pull String Security (IBM Cloud) Created

Usage Notes

Running Portainer:

The portainer image will store persistent data in the /data directory, create a volume to mount at this location so that the data is not lost on exit.

docker volume create portainer_data

Start the portainer container, by default portainer will use ports 9000 and 8000, bind to these ports so the UI is accessible outside of the container. The docker.sock must be mounted so that the portainer container has access to the docker daemon.

docker run -v /var/run/docker.sock:/var/run/docker.sock:ro -v portainer_data:/data \
-p 9000:9000 -p 8000:8000 -d --name portainer icr.io/ibmz/portainer:[tag]