Skip to content

Commit c414f36

Browse files
committed
Update references from version 6.0.0a4 to 6.0.0a6
1 parent 2711c02 commit c414f36

File tree

9 files changed

+24
-24
lines changed

9 files changed

+24
-24
lines changed

docs/install/containers/examples/haproxy-plone-zeo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ services:
3939
LOG_LEVEL: "info"
4040

4141
backend:
42-
image: plone/plone-backend:6.0.0a4
42+
image: plone/plone-backend:6.0.0a6
4343
restart: always
4444
environment:
4545
ZEO_ADDRESS: zeo:8100

docs/install/containers/examples/nginx-plone.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ services:
7575
- "80:80"
7676

7777
backend:
78-
image: plone/plone-backend:6.0.0a4
78+
image: plone/plone-backend:6.0.0a6
7979
environment:
8080
SITE: Plone
8181
TYPE: classic

docs/install/containers/examples/nginx-volto-plone-postgresql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ services:
105105
- backend
106106

107107
backend:
108-
image: plone/plone-backend:6.0.0a4
108+
image: plone/plone-backend:6.0.0a6
109109
environment:
110110
SITE: Plone
111111
RELSTORAGE_DSN: "dbname='plone' user='plone' host='db' password='plone'"

docs/install/containers/examples/nginx-volto-plone-zeo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ services:
105105
- backend
106106

107107
backend:
108-
image: plone/plone-backend:6.0.0a4
108+
image: plone/plone-backend:6.0.0a6
109109
environment:
110110
SITE: Plone
111111
ZEO_ADDRESS: db:8100

docs/install/containers/examples/nginx-volto-plone.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ services:
103103
- backend
104104

105105
backend:
106-
image: plone/plone-backend:6.0.0a4
106+
image: plone/plone-backend:6.0.0a6
107107
environment:
108108
SITE: Plone
109109
volumes:

docs/install/containers/images/backend.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -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

2323
Then 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
6565
Plone 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

7171
Plone 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"
105105
services:
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"
173173
services:
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
223223
To 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

229229
This 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
247247
These 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

253253
This 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.
266266
In 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
271271
RUN apt-get update \
272272
&& apt-get install -y --no-install-recommends gcc \

docs/install/containers/images/frontend.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ In the `Dockerfile` you will need to add two commands to make the Docker contain
6969

7070
```diff
7171
--no-interactive
72-
+
72+
+
7373
+ COPY entrypoint.sh /
74-
74+
7575
RUN cd plone-frontend \
7676
```
7777

@@ -99,7 +99,7 @@ version: "3"
9999
services:
100100

101101
backend:
102-
image: plone/plone-backend:6.0.0a4
102+
image: plone/plone-backend:6.0.0a6
103103
# Plone 5.2 series can be used too
104104
# image: plone/plone-backend:5.2.7
105105
ports:
@@ -128,7 +128,7 @@ To start, run the following command.
128128
129129
```shell
130130
docker compose up -d
131-
```
131+
```
132132

133133

134134
## Versions

docs/install/containers/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Consult [Get Docker](https://docs.docker.com/get-docker/) for details.
5858
First start the Plone Backend, naming it `plone6-backend` and creating a site with its default configuration, using the following command.
5959

6060
```shell
61-
docker run --name plone6-backend -e SITE=Plone -e CORS_ALLOW_ORIGIN='*' -d -p 8080:8080 plone/plone-backend:6.0.0a4
61+
docker run --name plone6-backend -e SITE=Plone -e CORS_ALLOW_ORIGIN='*' -d -p 8080:8080 plone/plone-backend:6.0.0a6
6262
```
6363

6464
Now start the Plone Frontend, linking it to the `plone6-backend`:

docs/install/source.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ html_meta:
99

1010
(install-source-1-label)=
1111

12-
# Install from source for development
12+
# Install from source for development
1313

1414
As an overview, you will perform the following steps in order.
1515

@@ -96,7 +96,7 @@ Paste the following configuration information into it.
9696

9797
```ini
9898
[buildout]
99-
extends = https://dist.plone.org/release/6.0.0a4/versions.cfg
99+
extends = https://dist.plone.org/release/6.0.0a6/versions.cfg
100100
parts = instance
101101

102102
[instance]
@@ -112,7 +112,7 @@ Install Plone with the following shell commands.
112112
# Create a Python virtual environment in the current directory
113113
python3.9 -m venv .
114114
# Install the latest Plone 6 requirements with pip
115-
bin/pip install -r https://dist.plone.org/release/6.0.0a4/requirements.txt
115+
bin/pip install -r https://dist.plone.org/release/6.0.0a6/requirements.txt
116116
# Run buildout to install Plone 6
117117
bin/buildout
118118
# Start the Plone instance
@@ -132,7 +132,7 @@ python3.9 -m venv .
132132
# Update Python package management tools
133133
bin/pip install -U pip setuptools wheel
134134
# Install Plone 6 with constrained requirements with pip
135-
bin/pip install Plone -c https://dist.plone.org/release/6.0.0a4/constraints.txt
135+
bin/pip install Plone -c https://dist.plone.org/release/6.0.0a6/constraints.txt
136136
# Create a Plone 6 site with the given username and password in the current directory
137137
bin/mkwsgiinstance -u admin:admin -d .
138138
# Initialize Zope

0 commit comments

Comments
 (0)