Forráskód Böngészése

Merge pull request #35 from careysizer/enterprise

Added Magento Enterprise environment variable to toggle support for Enterprise installations using Composer
Mark Shust 8 éve
szülő
commit
ecdb90fecb
2 módosított fájl, 8 hozzáadás és 1 törlés
  1. 7 1
      README.md
  2. 1 0
      docker-compose.yml

+ 7 - 1
README.md

@@ -10,6 +10,8 @@ This file is provided as an example development environment using Mage Inferno M
 
 ## Composer Setup
 
+### Authentication
+
 Uncomment the composer line from `appdata` to mount a `.composer` directory to the `www-data` user home directory. Please first setup Magento Marketplace authentication (details at <a href="http://devdocs.magento.com/guides/v2.0/install-gde/prereq/connect-auth.html" target="_blank">http://devdocs.magento.com/guides/v2.0/install-gde/prereq/connect-auth.html</a>).
 
 Place your auth token at `~/.composer/auth.json` with the following contents, like so:
@@ -25,7 +27,11 @@ Place your auth token at `~/.composer/auth.json` with the following contents, li
 }
 ```
 
-Then, just set `M2SETUP_USE_ARCHIVE` to `false` in your docker-compose.yml file.
+Then, just set `M2SETUP_USE_ARCHIVE` to `false` in your docker-compose.yml file. 
+
+### Magento Enterprise 
+
+You can install Magento Enterprise via Composer by setting `M2SETUP_USE_COMPOSER_ENTERPRISE` to `true` in docker-compose.yml file.
 
 ## Composer-less, No-Auth Setup
 

+ 1 - 0
docker-compose.yml

@@ -64,3 +64,4 @@ setup:
     - M2SETUP_VERSION=2.1.2
     - M2SETUP_USE_SAMPLE_DATA=false
     - M2SETUP_USE_ARCHIVE=true
+    - M2SETUP_USE_COMPOSER_ENTERPRISE=false