Replies: 1 comment 1 reply
-
Try this: host('domain.com/green', 'domain.com/blue')
->set('deploy_path', '~/{{hostname}}')
...
Or this: host('production')
->hostname('domain.com')
->set('deploy_path', '~/domain.com');
host('beta')
->hostname('domain.com')
->set('deploy_path', '~/beta.domain.com'); |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
How do I define two deployments onto the same host in Deployer 7?
With Deployer 5 and 6, we had this working:
I tried to do it like this:
which fails (obviously) with the following error:
Unfortunately, 7.0.0-beta is the only version right now compatible with PHP 8.0, which we use for this new project.
Beta Was this translation helpful? Give feedback.
All reactions