Plone
Container
A free and open-source CMS built on top of Zope
Image details
Configuration
TypeContainerlinuxplone:latest8080/tcp/dataTemplate by portainer
Notes
Standalone Install
Select an install method, to see config/commands for deploying Plone
Install on Portainer
Import all app templates into your Portainer instance, for easy 1-click deploys
- Ensure both Docker and Portainer are installed, and up-to-date
- Log into your Portainer web UI
- Under Settings → App Templates, paste the below URL
- Head to Home → App Templates, and the list of apps will show up
- Select Plone, fill in any config options, and hit Deploy
Template Import URL
https://raw.githubusercontent.com/Lissy93/portainer-templates/main/templates.json
Show Me
More install options in our documentation.
⚠️ DEPRECATION NOTICE ⚠️
- Plone 4.x is no longer supported.
- Plone 5.x is no longer supported.
- It is strongly recommended to migrate to the latest available Plone version. See https://plone.org/download/release-schedule for details.
Beginning with Plone 6.x, the frontend and backend run in separate Docker images. There's also a a ZEO server Docker image. All Plone 6.0 and later images are supported by the Plone Foundation and are maintained by community volunteers.
For Docker image usage, see Plone 6 Documentation.
Quick reference
- Maintained by:
[Plone Community](https://github.com/plone/plone.docker)- Where to get help:
[the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic)Supported tags and respective Dockerfile links
No supported tagsQuick reference (cont.)
- Where to file issues:
[https://github.com/plone/plone.docker/issues](https://github.com/plone/plone.docker/issues?q=)- Supported architectures: (more info)
**No supported architectures**- Published image artifact details:
[repo-info repo's `repos/plone/` directory](https://github.com/docker-library/repo-info/blob/master/repos/plone) ([history](https://github.com/docker-library/repo-info/commits/master/repos/plone))
(image metadata, transfer size, etc)- Image updates:
[official-images repo's `library/plone` label](https://github.com/docker-library/official-images/issues?q=label%3Alibrary%2Fplone)
[official-images repo's `library/plone` file](https://github.com/docker-library/official-images/blob/master/library/plone) ([history](https://github.com/docker-library/official-images/commits/master/library/plone))- Source of this description:
[docs repo's `plone/` directory](https://github.com/docker-library/docs/tree/master/plone) ([history](https://github.com/docker-library/docs/commits/master/plone))What is Plone?
Plone is a free and open source content management system built on top of the Zope application server.Features
- Enable add-ons via environment variables.
- Choose between Debian or Alpine based images.
- Built-in RelStorage support, configurable via environment variables (requires Plone 5.2.4+).
- Built-in LDAP/AD support via
pas.plugins.ldap(requires Plone 5.2.4+).
Usage
Start a single Plone instance
This will download and start the latest Plone 5 container, based on Debian.docker run -p 8080:8080 ploneThis image includes
EXPOSE 8080 (the Plone port), so standard container linking will make it automatically available to the linked containers. Now you can add a Plone Site at http://localhost:8080. The default Zope user and password are admin/admin.Start Plone within a ZEO cluster
A ZEO cluster is best suited for production setups. You will need a load balancer.Start ZEO server in the background.
docker run --name=zeo plone zeoStart two Plone clients, also in the background.
docker run --link=zeo -e ZEO_ADDRESS=zeo:8080 -p 8081:8080 plone
docker run --link=zeo -e ZEO_ADDRESS=zeo:8080 -p 8082:8080 ploneStart Plone in debug mode
You can also start Plone in debug mode (fg) by running the following command.docker run -p 8080:8080 plone fgAdd-ons
You can enable Plone add-ons via theADDONS environment variable.docker run -p 8080:8080 -e PLONE_ADDONS="eea.facetednavigation Products.PloneFormGen" ploneFor more information on how to extend this image with your own custom settings, adding more add-ons, building it, or mounting volumes, please refer to the Plone 5 documentation.
Supported environment variables
The Plone image uses several environment variables.Basic usage
ADDONS- Customize Plone via Plone add-ons using this environment variable.SITE- Add a Plone instance with this ID toData.fson first run. If not provided, you'll have to manually add a Plone site via the web UI.ZEO_ADDRESS- This environment variable allows you to run the Plone image as a ZEO client.VERSIONS- Use specific versions of Plone add-on or Python libraries.
Run Plone and install two add-ons (
eea.facetednavigation and collective.easyform).docker run -p 8080:8080 -e SITE="mysite" -e ADDONS="eea.facetednavigation collective.easyform" ploneTo use specific add-on versions, change the environment variable arguments as shown.
-e ADDONS="eea.facetednavigation collective.easyform" \
-e VERSIONS="eea.facetednavigation=13.3 collective.easyform=2.1.0"To use Plone REST API, start the Plone Docker image, then issue a command to
curl.docker run -p 8080:8080 -e SITE=plone plone
curl -H 'Accept: application/json' http://localhost:8080/ploneAdvanced usage
For advanced usage, the images support the following environment variables.Plone
PLONE_ADDONS,ADDONS- Customize Plone via Plone add-ons using these environment variables.PLONE_SITE,SITE- Add a Plone instance with this ID toData.fson first run. If not provided, you'll have to manually add a Plone site via the web UI.PLONE_VERSIONS,VERSIONS- Use specific versions of Plone add-on or Python libraries.PLONE_PROFILES, PROFILES- GenericSetup profiles to include when theSITEenvironment is provided.PLONE_ZCML,ZCML- Include custom Plone add-on ZCML files (formerlyBUILDOUT_ZCML).PLONE_DEVELOP,DEVELOP- Develop new or existing Plone add-ons (formerlyBUILDOUT_DEVELOP).
ZEO
ZEO_ADDRESS- This environment variable allows you to run the Plone image as a ZEO client.ZEO_READ_ONLY- Run Plone as a read-only ZEO client. Defaults tooff.ZEO_CLIENT_READ_ONLY_FALLBACK- A flag indicating whether a read-only remote storage should be acceptable as a fallback when no writable storages are available. Defaults tofalse.ZEO_SHARED_BLOB_DIR- Set this toonif the ZEO server and the instance have access to the same directory. Defaults tooff.ZEO_STORAGE- Set the storage number of the ZEO storage. Defaults to1.ZEO_CLIENT_CACHE_SIZE- Set the size of the ZEO client cache. Defaults to128MB.ZEO_PACK_KEEP_OLD- Can be set tofalseto disable the creation of*.fs.oldfiles before the pack is run. Defaults totrue.HEALTH_CHECK_TIMEOUT- Time in seconds to wait until health check starts. Defaults to1second.HEALTH_CHECK_INTERVAL- Interval in seconds to check that the Zope application is still healthy. Defaults to1second.
CORS
CORS_ALLOW_ORIGIN- Origins that are allowed access to the resource. Either a comma separated list of origins, for example,https://example.net,https://mydomain.com, or*. Defaults tohttp://localhost:3000,http://127.0.0.1:3000.CORS_ALLOW_METHODS- A comma separated list of HTTP method names that are allowed by this CORS policy, for example,DELETE,GET,OPTIONS,PATCH,POST,PUT. Defaults toDELETE,GET,OPTIONS,PATCH,POST,PUT.CORS_ALLOW_CREDENTIALS- Indicates whether the resource supports user credentials in the request. Defaults totrue.CORS_EXPOSE_HEADERS- A comma separated list of response headers clients can access, for example,Content-Length,X-My-Header. Defaults toContent-Length,X-My-Header.CORS_ALLOW_HEADERS- A comma separated list of request headers allowed to be sent by the client, for example,X-My-Header. Defaults toAccept,Authorization,Content-Type,X-Custom-Header.CORS_MAX_AGE- Indicates how long the results of a preflight request can be cached. Defaults to3600.
RelStorage
RELSTORAGE_ADAPTER_OPTIONS- A comma separated list of RelStorage adapter options to set for the plone instance usingplone.recipe.zope2instance. This is required to use RelStorage.
All other available environment variables match exactly with RelStorage settings, according to the settings specification available on the docs.
RELSTORAGE_NAME-name- The name of the storage.RELSTORAGE_READ_ONLY-read-only- Iftrue, only reads may be executed against the storage.RELSTORAGE_KEEP_HISTORY-keep-history- If this option is set totrue, the default value, then the adapter will create and use a history-preserving database schema, such as FileStorage.RELSTORAGE_BLOB_DIR-blob-dir- If supplied, the storage will provide ZODB BLOB support. This option specifies the name of the directory to hold BLOB data. The directory will be created if it doesn't exist. If no value, or an empty value, is provided, then no BLOB support will be provided. Defaults to/plone/instance/var/blobstorage.
[See more RelStorage options](https://relstorage.readthedocs.io/en/latest/relstorage-options.html).Documentation
Full documentation for end users can be found at 5.docs.plone.org.License
View license information for the software contained in this image.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).
Some additional license information which was able to be auto-detected might be found in the
repo-info repository's plone/ directory.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.
Serve Plone on your own domain behind Caddy, Nginx or Traefik. Fill in your domain and copy the result. It's a starting point, some apps need their own base URL or extra headers set too.
Proxying plone.example.com to http://plone:8080
Add this to your Caddyfile
plone.example.com {
reverse_proxy http://plone:8080
}Check the logs first
Nine times out of ten the logs tell you exactly what went wrong.
- In Portainer, go to Containers, click the container, then Logs. Or run
docker logs <container> - Exit codes help too:
137means killed, usually out of memory.126or127means the command inside the image is broken.
Published on a random port
This template exposes 8080/tcp without setting a host port,
so Docker picks a random free one on every deploy.
- Find it in the Ports column of Portainer's container list, or with
docker port <container>
Image won't pull
Test the pull directly on the host: docker pull plone:latest
- "manifest unknown" means the tag no longer exists. This template uses
latest, so try pinning a specific version instead. - "toomanyrequests" is the Docker Hub rate limit. Log in with
docker loginto raise it. - "no space left on device" means a full disk. Reclaim space with
docker system prune
"exec format error"
This means the image was built for a different CPU architecture than your server.
- This image supports:
amd64, arm/v7, arm/v6, 386, ppc64le, s390x, arm/v5, arm64/v8 - Check yours with
uname -m: x86_64 is amd64, aarch64 is arm64. Raspberry Pi and other ARM boards are the usual culprits.
Raise an issue
Found something which isn't working as it should? Here's how to report it.
- Bug within the app: Open an issue within the app's repo
- Template not working: Open an issue on portainer/templates
- This website not working: Open an issue on lissy93/portainer-templates
A single container
Plone runs as one container, the simplest kind of app here. Just the one image to pull and nothing else wired up alongside it.
The app image
An image is the app packed up ready to go, everything Plone needs bundled into one download. This template pulls plone:latest, which Docker fetches once (about 257 MB) and then starts your own copy from.
Where the image comes from
Docker pulls its images from registries, public libraries of ready-built apps. Plone's comes from Docker Hub as one of its official, curated images.
Version tags
The bit after the colon in the image name is the version tag. Here it's latest, which always points at the newest build, so a redeploy can bump you to a newer release without you asking. Newest right now is 5.2.14-python38. Pin a specific tag if you would rather stay on one version.
Which machines it runs on
Every image is built for particular CPU types. This one ships for amd64, arm/v7, arm/v6, 386, ppc64le, s390x, arm/v5, arm64/v8, so it runs on both regular x86 servers and ARM boards like a Raspberry Pi.
Ports
A port is the door the app answers on. Here the app exposes a port but leaves the host side blank, so Docker picks a free one for you. It opens:
8080, published on a random host port
Volumes
A volume is where Plone keeps its files so they survive an update or a restart. Without one, anything it saves would sit inside the container and vanish the moment it's recreated. This template mounts:
/dataas a volume Docker manages for you
Networking
Nothing custom is set, so Plone sits on Docker's default bridge network: its own private space that reaches the outside world only through the ports it publishes.
Platform
The platform is linux, the kind of system the container is built to run on. Docker and Portainer handle this on a normal Linux server.
Portainer app templates
Zooming out, this whole page comes from a Portainer app template: a short recipe telling Portainer how to set Plone up. Add the template list to Portainer once, then deploying Plone is a click rather than a wall of config.