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.24.1 docker pull icr.io/ibmz/portainer@sha256:c90be201befc1dd5c43f506c35411b1ba4da8e414b29539396f0bdcc763d7d96 Vulnerability Report07-22-2025
2.21.5 docker pull icr.io/ibmz/portainer@sha256:8fc90748c49242716a3b05d40faf304002daaca8dc1159776362a6a3b19863fa Vulnerability Report02-12-2025
2.19.5 docker pull icr.io/ibmz/portainer@sha256:f8d09dbd991055a060bd448be3d23e2a10fd3801ec34fb55993f048f00dd173f Vulnerability Report11-22-2024
2.13.1 docker pull icr.io/ibmz/portainer@sha256:2e9251030a546518ba45013046b7672e03e3004b1dab60b4f21415f13aad0742 Vulnerability Report07-22-2025
2.11.1 docker pull icr.io/ibmz/portainer@sha256:3ecb7144614e80762e4fb640f822cc5b40f54b3f6a7d4e59ccdf9b4051cd138e Vulnerability Report07-22-2025
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]