Skip to content

Commit 481cd92

Browse files
committed
Build/Test Tools: Remove unnecessary docker branding
1 parent f50a9c1 commit 481cd92

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ If you are not using a package manager, see the [Node.js download page](https://
3737

3838
**Note:** WordPress currently only officially supports Node.js `20.x` and npm `10.x`.
3939

40-
You will also need [Docker](https://www.docker.com/products/docker-desktop) installed and running on your computer. Docker is the virtualization software that powers the local development environment. Docker can be installed just like any other regular application.
40+
You will also need a container environment (e.g. [Docker](https://www.docker.com/products/docker-desktop) or [Podman](https://podman-desktop.io/)), installed and running on your computer. The container environment is the virtualization software that powers the local development environment. Both application can be installed just like any other regular application.
4141

4242
### Development Environment Commands
4343

44-
Ensure [Docker](https://www.docker.com/products/docker-desktop) is running before using these commands.
44+
Ensure [Docker](https://www.docker.com/products/docker-desktop) or [Podman](https://podman-desktop.io/) are running before using these commands.
4545

4646
#### To start the development environment for the first time
4747

@@ -97,7 +97,7 @@ npm run test:php -- --group <group name or ticket number>
9797
#### Generating a code coverage report
9898
PHP code coverage reports are [generated daily](https://github.com/WordPress/wordpress-develop/actions/workflows/test-coverage.yml) and [submitted to Codecov.io](https://app.codecov.io/gh/WordPress/wordpress-develop).
9999

100-
After the local Docker environment has [been installed and started](#to-start-the-development-environment-for-the-first-time), the following command can be used to generate a code coverage report.
100+
After the local container environment has [been installed and started](#to-start-the-development-environment-for-the-first-time), the following command can be used to generate a code coverage report.
101101

102102
```
103103
npm run test:coverage
@@ -133,15 +133,15 @@ npm run env:start
133133

134134
#### Resetting the development environment
135135

136-
The development environment can be reset. This will destroy the database and attempt to remove the pulled Docker images.
136+
The development environment can be reset. This will destroy the database and attempt to remove the pulled container images.
137137

138138
```
139139
npm run env:reset
140140
```
141141

142142
### Apple Silicon machines and old MySQL/MariaDB versions
143143

144-
Older MySQL and MariaDB Docker images do not support Apple Silicon processors (M1, M2, etc.). This is true for:
144+
Older MySQL and MariaDB container images do not support Apple Silicon processors (M1, M2, etc.). This is true for:
145145

146146
- MySQL versions 5.7 and earlier
147147
- MariaDB 5.5
@@ -155,7 +155,7 @@ services:
155155
platform: linux/amd64
156156
```
157157

158-
Additionally, the "Use Rosetta for x86/AMD64 emulation on Apple Silicon" setting in Docker needs to be disabled for this workaround.
158+
Additionally, the "Use Rosetta for x86/AMD64 emulation on Apple Silicon" setting in containers needs to be disabled for this workaround.
159159

160160
## Credentials
161161

0 commit comments

Comments
 (0)