Skip to content

Commit 2f1fa72

Browse files
author
Alan Kent
committed
Docker-compose.yml cannot have an empty section, so left
environment variables as zero length rather than commented out.
1 parent a2876ec commit 2f1fa72

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

docker-compose.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,13 @@ services:
3737
environment:
3838
# Optional. If set, container will create a default auth.json
3939
# file for Composer to use (if one does not already exist).
40-
#- MAGENTO_PUBLIC_KEY=<insert-hex-key-here>
41-
#- MAGENTO_PRIVATE_KEY=<insert-hex-key-here>
40+
# (Download keys are a long hex sequence available from
41+
# http://marketplace.magento.com/, "My Profile", "My Access Keys")
42+
# Generally it is not recommended to commit keys to a git repo
43+
# for security reasons - it grants all viewers permission to download
44+
# all your Marketplace purchases.
45+
- MAGENTO_PUBLIC_KEY=
46+
- MAGENTO_PRIVATE_KEY=
4247

4348
# The following exposes ports inside the container publicly.
4449
# Docker maps the public port numbers to ports inside the container

0 commit comments

Comments
 (0)