- Obtain public/private pair after generating one from https://marketplace.magento.com/customer/accessKeys/
- Use the public key as username and the private key as password.
- Docker, composer installed
- Configure docker file-sharing to include the folder you'll chuck the magento install in
composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition dockgento
# Enter username and public auth key from above
cd dockgento
find var vendor pub/static pub/media app/etc -type f -exec chmod u+w {} \;
find var vendor pub/static pub/media app/etc -type d -exec chmod u+w {} \;
chmod u+x bin/magento
#
docker pull magento/magento2devbox-web