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:f8d09dbd991055a060bd448be3d23e2a10fd3801ec34fb55993f048f00dd173f Vulnerability Report11-22-2024
2.13.1 docker pull icr.io/ibmz/portainer@sha256:c9c1c4cf849122eb712b438e3ccba5ed11c3be2d3769794b2cabd52d987b1841 Vulnerability Report11-22-2024
2.21.4-alpine docker pull icr.io/ibmz/portainer@sha256:a56c2438de4faefa496d0d8489833c0188b061cb928d8c4c7dd7b97186f18f0f Vulnerability Report12-19-2024
2.11.1 docker pull icr.io/ibmz/portainer@sha256:84b4f1283981a7ce4cdb02b3115bb49a016459536355d57cdcf3067b48ed6fc6 Vulnerability Report11-22-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]