2
0

onelinesetup 254 B

123456789101112
  1. #!/bin/bash
  2. set -o errexit
  3. DOMAIN=${1:-magento.test}
  4. VERSION=${2:-2.4.3}
  5. EDITION=${3:-community}
  6. curl -s https://raw.githubusercontent.com/markshust/docker-magento/master/lib/template | bash
  7. bin/download "${VERSION}" "${EDITION}"
  8. bin/setup ${DOMAIN}