At your local TYPO3 development, Do you want to DDEV Share with your team? By default, DDEV designed to access and work only on local machine, But if you want give access of your DDEV instances to your collgue like Frontend or QA guys, then follow these steps.
Step 1: Upgrade latest DDEV (atleast v.11.0)
// Shutdown all running DDEV TYPO3 Instances
ddev poweroff or ddev stop --all --stop-ssh-agent
// Update to latest DDEV
curl -L https://raw.githubusercontent.com/drud/ddev/master/scripts/install_ddev.sh | bash
Step 2: Allow DDEV Share Access
ddev poweroff
ddev config global --router-bind-all-interfaces=true
ddev start
Post a Comment