Skip to content

Commit 0e76aad

Browse files
committed
Add remarks of how to install Docker
1 parent 99d18e6 commit 0e76aad

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

docs/install/containers/index.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,24 @@ examples/index
2424

2525
## Getting started
2626

27-
Assuming you have [Docker](https://docs.docker.com/get-docker/) and [Docker Compose](https://docs.docker.com/compose/install/) already installed on your computer, you could try Plone 6.
27+
```{note}
28+
Although there are many container engine tools for developing, managing, and running containers, we will use {term}`Docker` in this documentation.
29+
```
30+
31+
### Install Docker
32+
33+
Install [Docker](https://docs.docker.com/get-docker/) for your operating system.
34+
35+
Docker Desktop includes all Docker tools.
36+
Both macOS and Windows use Docker Desktop.
37+
On some Linux distributions a beta version of Docker Desktop is available.
38+
If Docker Desktop is not available for your Linux distribution, you may still install Docker Engine and all of its tools.
39+
Consult [Get Docker](https://docs.docker.com/get-docker/) for details.
40+
41+
{term}`Docker Compose` is one of the Docker tools that will be used throughout this documentation.
42+
43+
44+
### Start Plone
2845

2946
First start the Plone Backend, naming it `plone6-backend` and creating a site with its default configuration, using the following command.
3047

@@ -38,6 +55,7 @@ Now start the Plone Frontend, linking it to the `plone6-backend`:
3855
docker run --name plone6-frontend --link plone6-backend:backend -e RAZZLE_API_PATH=http://localhost:8080/Plone -e RAZZLE_INTERNAL_API_PATH=http://backend:8080/Plone -d -p 3000:3000 plone/plone-frontend:latest
3956
```
4057

58+
4159
## Access your Plone site
4260

4361
Point your browser to `http://localhost:3000` and you should see the new Plone site.
@@ -46,6 +64,7 @@ Point your browser to `http://localhost:3000` and you should see the new Plone s
4664
The default user is `admin` and the password is `admin`.
4765
```
4866

67+
4968
## Shutdown and cleanup
5069

5170
To stop and clean up the containers use the following commands.
@@ -55,6 +74,7 @@ docker stop plone6-frontend && docker rm plone6-frontend
5574
docker stop plone6-backend && docker rm plone6-backend
5675
```
5776

77+
5878
## Next steps
5979

6080
Get to know the [Official Images](images/index) maintained by the Plone community.

0 commit comments

Comments
 (0)