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:10efa68c64652fee07fa22e26ee066076c6390772dd6c1b4f4ca120691e3e6d4 Vulnerability Report01-02-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:27be025fd323c6b008b4eeb5685370828a6a09ff086865917a77c075d489e039 Vulnerability Report01-02-2025
2.11.1 docker pull icr.io/ibmz/portainer@sha256:f3d060b8e351e778aec94525a2e97ef89ee5d21e9c4717b2a8753783f8de3fbe Vulnerability Report01-02-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]