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.13.1 docker pull icr.io/ibmz/portainer@sha256:6f9e2501a531424ed6f807301443c10163cd78876cb9756fbb8ae41699015182 Vulnerability Report04-30-2024
2.11.1 docker pull icr.io/ibmz/portainer@sha256:4661f1f25a1f7a37fe0e515e7bc4488eaed6fabc817c771c410fd1932ad622e8 Vulnerability Report04-30-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]