Skip to content

Commit 9ddf4a9

Browse files
committed
Update default Magento version to 2.4.6-p3.
1 parent ed64164 commit 9ddf4a9

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,10 @@ mkdir -p ~/Sites/magento
131131
cd $_
132132

133133
# Run this automated one-liner from the directory you want to install your project.
134-
curl -s https://raw.githubusercontent.com/markshust/docker-magento/master/lib/onelinesetup | bash -s -- magento.test 2.4.6-p2 community
134+
curl -s https://raw.githubusercontent.com/markshust/docker-magento/master/lib/onelinesetup | bash -s -- magento.test 2.4.6-p3 community
135135
```
136136

137-
The `magento.test` above defines the hostname to use, and the `2.4.6-p2` defines the Magento version to install. Note that since we need a write to `/etc/hosts` for DNS resolution, you will be prompted for your system password during setup.
137+
The `magento.test` above defines the hostname to use, and the `2.4.6-p3` defines the Magento version to install. Note that since we need a write to `/etc/hosts` for DNS resolution, you will be prompted for your system password during setup.
138138

139139
After the one-liner above completes running, you should be able to access your site at `https://magento.test`.
140140

@@ -162,10 +162,10 @@ cd $_
162162
curl -s https://raw.githubusercontent.com/markshust/docker-magento/master/lib/template | bash
163163

164164
# Download the version of Magento you want to use with:
165-
bin/download 2.4.6-p2 community
165+
bin/download 2.4.6-p3 community
166166
# You can specify the version and type (community, enterprise, mageos, mageos-nightly, mageos-mirror, mageos-hypernode-mirror, or mageos-maxcluster-mirror).
167167
# The mageos type is an alias for mageos-mirror.
168-
# If no arguments are passed, "2.4.6-p2" and "community" are the default values used.
168+
# If no arguments are passed, "2.4.6-p3" and "community" are the default values used.
169169

170170
# or for Magento core development:
171171
# bin/start --no-dev
@@ -279,7 +279,7 @@ It is recommended to keep your root docker config files in one repository, and y
279279
- `bin/dev-urn-catalog-generate`: Generate URN's for PhpStorm and remap paths to local host. Restart PhpStorm after running this command.
280280
- `bin/devconsole`: Alias for `bin/n98-magerun2 dev:console`
281281
- `bin/docker-compose`: Support V1 (`docker-compose`) and V2 (`docker compose`) docker compose command, and use custom configuration files, such as `compose.yml` and `compose.dev.yml`
282-
- `bin/download`: Download specific Magento version from Composer to the container, with optional arguments of the version (2.4.6-p2 [default]) and type ("community" [default], "enterprise", or "mageos"). Ex. `bin/download 2.4.6-p2 enterprise`
282+
- `bin/download`: Download specific Magento version from Composer to the container, with optional arguments of the version (2.4.6-p3 [default]) and type ("community" [default], "enterprise", or "mageos"). Ex. `bin/download 2.4.6-p3 enterprise`
283283
- `bin/debug-cli`: Enable Xdebug for bin/magento, with an optional argument of the IDE key. Defaults to PHPSTORM Ex. `bin/debug-cli enable PHPSTORM`
284284
- `bin/fixowns`: This will fix filesystem ownerships within the container.
285285
- `bin/fixperms`: This will fix filesystem permissions within the container.

compose/bin/download

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
VERSION=${1:-2.4.6-p2}
3+
VERSION=${1:-2.4.6-p3}
44
EDITION=${2:-community}
55

66
bin/stop

lib/onelinesetup

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -o errexit
33

44
DOMAIN=${1:-magento.test}
5-
VERSION=${2:-2.4.6-p2}
5+
VERSION=${2:-2.4.6-p3}
66
EDITION=${3:-community}
77

88
curl -s https://raw.githubusercontent.com/markshust/docker-magento/master/lib/template | bash

0 commit comments

Comments
 (0)