![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/.ddev/ |
#!/usr/bin/env bash # Set up ddev for use on gitpod set -eu -o pipefail # Misc housekeeping before start ddev config global --omit-containers=ddev-router # Pass the GITPOD_WORKSPACE_URL env variable to the web container for our setup script ddev config global --web-environment="MAUTIC_URL=$(gp url 8080),PHPMYADMIN_URL=$(gp url 8036),MAILHOG_URL=$(gp url 8025)" # Make phpmyadmin behave with ports statement # This would normally be done by post_install_hooks # in ddev/ddev-phpmyadmin cat <<EOF >.ddev/docker-compose.phpmyadmin_norouter.yaml services: phpmyadmin: ports: - 8036:80 EOF ddev start -y