You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 rivejä
459 B

  1. #!/bin/bash
  2. ## #ddev-generated: If you want to edit and own this file, remove this line.
  3. ## Description: Launch a browser with PhpMyAdmin
  4. ## Usage: phpmyadmin
  5. ## Example: "ddev phpmyadmin"
  6. DDEV_PHPMYADMIN_PORT=8036
  7. DDEV_PHPMYADMIN_HTTPS_PORT=8037
  8. if [ ${DDEV_PRIMARY_URL%://*} = "http" ] || [ -n "${GITPOD_WORKSPACE_ID:-}" ] || [ "${CODESPACES:-}" = "true" ]; then
  9. ddev launch :$DDEV_PHPMYADMIN_PORT
  10. else
  11. ddev launch :$DDEV_PHPMYADMIN_HTTPS_PORT
  12. fi