Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit 54fb962

Browse files
authored
Merge pull request #2561 from magento-devdocs/hg-cloud-issues
Fix remote storage related to Cloud Fix /pull/9144
2 parents 41f2ee9 + b45628b commit 54fb962

File tree

5 files changed

+12
-29
lines changed

5 files changed

+12
-29
lines changed

src/cloud/docker/docker-mode-developer.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Large files (>1 GB) can cause a period of inactivity. DB dumps and archive files
2929
{:.procedure}
3030
To launch the Docker environment in developer mode:
3131

32-
1. In your local environment, generate the Docker Compose configuration file. You can use the service configuration options, such as `--php`, to [specify a version][services].
32+
1. In your local project root, generate the Docker Compose configuration file. You can use the service configuration options, such as `--php`, to [specify a version][services].
3333

3434
```bash
3535
./vendor/bin/ece-docker build:compose --mode="developer"
@@ -41,7 +41,7 @@ To launch the Docker environment in developer mode:
4141
./vendor/bin/ece-docker build:compose --mode="developer" --sync-engine="mutagen"
4242
```
4343

44-
{:.bs-callout-info}
44+
{:.bs-callout-tip}
4545
You can further customize the Docker Compose configuration file by adding additional options to the `build:compose` command. For example, you can set the software version for a service, or add Xdebug configuration. See [service configuration options].
4646

4747
1. _Optional_: If you have a custom PHP configuration file, copy the default configuration DIST file to your custom configuration file and make any necessary changes.
@@ -56,9 +56,9 @@ To launch the Docker environment in developer mode:
5656
docker-compose up -d
5757
```
5858

59-
1. If you selected the `manual-native` option, start the file synchronization using the following commands.
59+
1. If you selected the `manual-native` option, start the file synchronization.
6060

61-
**This command copies all data from the local machine to the Docker volume:**
61+
**To copy all data from the local machine to the Docker volume:**
6262

6363
```bash
6464
./bin/magento-docker copy-to --all
@@ -71,7 +71,7 @@ To launch the Docker environment in developer mode:
7171
./bin/magento-docker copy-to vendor
7272
```
7373

74-
**To copy all data from the Docker volume to the local machine, use:**
74+
**To copy all data from the Docker volume to the local machine:**
7575

7676
```bash
7777
./bin/magento-docker copy-from --all
@@ -136,7 +136,7 @@ To launch the Docker environment in developer mode:
136136
docker-compose run --rm deploy magento-command cache:clean
137137
```
138138

139-
1. Access the local Magento Cloud template by opening one of the following URLs in a browser:
139+
1. Access the local storefront by opening one of the following URLs in a browser:
140140

141141
- `http://magento2.docker`
142142

src/cloud/docker/docker-mode-production.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ To launch the Docker environment in production mode:
7878
docker-compose restart
7979
```
8080

81-
1. Access the local Magento Cloud template by opening one of the following URLs in a browser:
81+
1. Access the local storefront by opening one of the following URLs in a browser:
8282

8383
- `http://magento2.docker`
8484

src/cloud/env/variables-deploy.md

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -392,26 +392,6 @@ You must have a Redis service configured in the `.magento.app.yaml` file and in
392392

393393
The read-only connection is not available for use in the Integration environment or if you use the [`CACHE_CONFIGURATION` variable](#cache_configuration).
394394

395-
### `REMOTE_STORAGE`
396-
397-
- **Default**—_Not set_
398-
- **Version**—{{site.data.var.ee}} 2.4.2 and later
399-
400-
Configure a _storage adapter_ to store media files in a persistent, remote storage container using a storage service, such as AWS S3. Use the remote storage option to improve performance on Cloud projects with complex, multi-server configurations that must share resources.
401-
402-
```yaml
403-
stage:
404-
deploy:
405-
REMOTE_STORAGE:
406-
driver: aws-s3 # Required
407-
prefix: cloud # Optional
408-
config:
409-
bucket: my-bucket # Required
410-
region: my-region # Required
411-
key: my-key # Optional
412-
secret: my-secret-key # Optional
413-
```
414-
415395
### `RESOURCE_CONFIGURATION`
416396

417397
- **Default**—Not set

src/cloud/release-notes/ece-release-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ See [Upgrades and patches]({{ site.baseurl }}/cloud/project/project-upgrade-pare
4242
## v2002.1.5
4343
*Release date: Feb 1, 2021*<br/>
4444

45-
- {:.new}**Remote storage**—Added the [`REMOTE_STORAGE`]({{site.baseurl}}/cloud/env/variables-deploy.html#remote_storage) environment variable to enable Cloud Projects for remote storage of media files using a storage service, such as AWS S3.<!--MCLOUD-7153-->
45+
- {:.new}**Remote storage**—Added the `REMOTE_STORAGE` environment variable to enable Cloud Projects for remote storage of media files using a storage service, such as AWS S3. This configuration option is part of the {{site.data.var.ct}} package, but is not supported on {{site.data.var.ece}}.<!--MCLOUD-7153-->
4646

4747
- {:.new}**New cloud:config:validate command**—Added command `php vendor/bin/ece-tools cloud:config:validate` to validate the `.magento.env.yaml` configuration before pushing changes to the remote Cloud environment.<!--MCLOUD-7120-->
4848

src/guides/v2.4/config-guide/remote-storage/config-remote-storage.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ The Remote Storage module provides the option to store media files and schedule
1212
{:.bs-callout-info}
1313
Remote storage is available in version 2.4.2 and later only. See the [2.4.2 release notes]({{page.baseurl}}/release-notes/open-source-2-4-2.html).
1414

15+
{:.bs-callout-info}
16+
The Remote storage module is _not_ supported on {{site.data.var.ece}}.
17+
1518
![schema image]
1619

1720
## Remote storage options
@@ -78,7 +81,7 @@ After you enable remote storage for a specific adapter, you can use the CLI to m
7881
```
7982

8083
{:.bs-callout-info}
81-
The sync command only migrates files in the `pub/media` directory, _not_ the import/export files in the `var` directory. See [Scheduled Import/Export][import-export] in the _Magento 2.4 User Guide_.
84+
The sync command only migrates files in the `pub/media` directory, _not_ the import/export files in the `var` directory. See [Scheduled Import/Export][import-export] in the _Commerce 2.4 User Guide_.
8285

8386
<!-- link definitions -->
8487
[AWS S3]: {{site.baseurl}}/guides/v2.4/config-guide/remote-storage/config-remote-storage-aws-s3.html

0 commit comments

Comments
 (0)