Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 

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