diff --git a/assets/dev-env.lando.template.yml.ejs b/assets/dev-env.lando.template.yml.ejs index 5b9915078..b7ab57bac 100644 --- a/assets/dev-env.lando.template.yml.ejs +++ b/assets/dev-env.lando.template.yml.ejs @@ -332,7 +332,7 @@ tooling: nocopy: true - type: volume source: clientcode_vipconfig - target: /wp/wp-content/vip-config + target: /wp/vip-config volume: nocopy: true <% } else { %> @@ -342,6 +342,6 @@ tooling: - <%= appCode.dir %>/plugins:/wp/wp-content/plugins - <%= appCode.dir %>/private:/wp/wp-content/private - <%= appCode.dir %>/themes:/wp/wp-content/themes - - <%= appCode.dir %>/vip-config:/wp/wp-content/vip-config + - <%= appCode.dir %>/vip-config:/wp/vip-config <% } %> <% } %> diff --git a/src/lib/constants/dev-environment.ts b/src/lib/constants/dev-environment.ts index b1dbbb42c..a00b9979f 100644 --- a/src/lib/constants/dev-environment.ts +++ b/src/lib/constants/dev-environment.ts @@ -49,4 +49,4 @@ export const DEV_ENVIRONMENT_DEFAULTS = { phpVersion: Object.keys( DEV_ENVIRONMENT_PHP_VERSIONS )[ 0 ], } as const; -export const DEV_ENVIRONMENT_VERSION = '2.1.1'; +export const DEV_ENVIRONMENT_VERSION = '2.1.2';