Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 

15 righe
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