@@ -17,7 +17,7 @@ This chapter covers Plone backend [Docker](https://www.docker.com/) images using
1717### Simple usage
1818
1919``` shell
20- docker run -p 8080:8080 plone/plone-backend:6.0.0a4 start
20+ docker run -p 8080:8080 plone/plone-backend:6.0.0a6 start
2121```
2222
2323Then point your browser at ` http://localhost:8080 ` .
@@ -65,13 +65,13 @@ To recreate the Plone site when restarting the container, you can pass the `DELE
6565Plone 6 example:
6666
6767``` shell
68- docker run -p 8080:8080 -e ADDONS=" eea.api.layout" -e SITE=" Plone" -e PROFILES=" eea.api.layout:default" plone/plone-backend:6.0.0a4
68+ docker run -p 8080:8080 -e ADDONS=" eea.api.layout" -e SITE=" Plone" -e PROFILES=" eea.api.layout:default" plone/plone-backend:6.0.0a6
6969```
7070
7171Plone 6 Classic example:
7272
7373``` shell
74- docker run -p 8080:8080 -e ADDONS=" eea.facetednavigation" -e SITE=" Plone" -e TYPE=" classic" -e PROFILES=" eea.facetednavigation:default" plone/plone-backend:6.0.0a4
74+ docker run -p 8080:8080 -e ADDONS=" eea.facetednavigation" -e SITE=" Plone" -e TYPE=" classic" -e PROFILES=" eea.facetednavigation:default" plone/plone-backend:6.0.0a6
7575```
7676
7777``` {warning}
@@ -105,7 +105,7 @@ version: "3"
105105services :
106106
107107 backend :
108- image : plone/plone-backend:6.0.0a4
108+ image : plone/plone-backend:6.0.0a6
109109 restart : always
110110 environment :
111111 ZEO_ADDRESS : zeo:8100
@@ -173,7 +173,7 @@ version: "3"
173173services :
174174
175175 backend :
176- image : plone/plone-backend:6.0.0a4
176+ image : plone/plone-backend:6.0.0a6
177177 environment :
178178 RELSTORAGE_DSN : " dbname='plone' user='plone' host='db' password='plone'"
179179 ports :
@@ -223,13 +223,13 @@ It is possible to install add-ons during startup time in a container created usi
223223To do so, pass the `ADDONS` environment variable with a space separated list of requirements to be added to the image :
224224
225225` ` ` shell
226- docker run -p 8080:8080 -e ADDONS="pas.plugins.authomatic" plone/plone-backend:6.0.0a4 start
226+ docker run -p 8080:8080 -e ADDONS="pas.plugins.authomatic" plone/plone-backend:6.0.0a6 start
227227` ` `
228228
229229This approach also allows you to test Plone with a specific version of one of its core components
230230
231231` ` ` shell
232- docker run -p 8080:8080 -e ADDONS="plone.volto==3.1.0a3" plone/plone-backend:6.0.0a4 start
232+ docker run -p 8080:8080 -e ADDONS="plone.volto==3.1.0a3" plone/plone-backend:6.0.0a6 start
233233` ` `
234234
235235` ` ` {warning}
@@ -247,13 +247,13 @@ To do so, pass the `DEVELOP` environment variable with a space separated list of
247247These packages will be installed with `pip install --editable`.
248248
249249` ` ` shell
250- docker run -p 8080:8080 -e DEVELOP="/app/src/mysite.policy" plone/plone-backend:6.0.0a4 start
250+ docker run -p 8080:8080 -e DEVELOP="/app/src/mysite.policy" plone/plone-backend:6.0.0a6 start
251251` ` `
252252
253253This approach also allows you to develop local packages by using a volume.
254254
255255` ` ` shell
256- docker run -p 8080:8080 -e DEVELOP="/app/src/mysite.policy" -v /path/to/mysite.policy:/app/src/mysite.policy plone/plone-backend:6.0.0a4 start
256+ docker run -p 8080:8080 -e DEVELOP="/app/src/mysite.policy" -v /path/to/mysite.policy:/app/src/mysite.policy plone/plone-backend:6.0.0a6 start
257257` ` `
258258
259259` ` ` {warning}
@@ -266,7 +266,7 @@ We advise against using this feature on production environments.
266266In a directory create a `Dockerfile` file :
267267
268268` ` ` Dockerfile
269- FROM plone/plone-backend:6.0.0a4
269+ FROM plone/plone-backend:6.0.0a6
270270
271271RUN apt-get update \
272272 && apt-get install -y --no-install-recommends gcc \
0 commit comments