Skip to content

Commit 8c8a4d2

Browse files
feat: change default runtime php image name (#8876)
1 parent 93d45bf commit 8c8a4d2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • frontend/src/views/website/runtime/php/create

frontend/src/views/website/runtime/php/create/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ const changeApp = (appId: number) => {
345345
};
346346
347347
const changePHPVersion = (version: string) => {
348-
runtime.image = 'php:' + version;
348+
runtime.image = '1panel-php-fpm:' + version;
349349
};
350350
351351
const changeVersion = () => {
@@ -363,7 +363,7 @@ const changeVersion = () => {
363363
formFields.value[fileds[index]['envKey']] = fileds[index];
364364
runtime.params[fileds[index]['envKey']] = fileds[index]['default'];
365365
if (fileds[index]['envKey'] == 'PHP_VERSION') {
366-
runtime.image = 'php:' + fileds[index]['default'];
366+
runtime.image = '1panel-php-fpm:' + fileds[index]['default'];
367367
}
368368
}
369369
initParam.value = true;

0 commit comments

Comments
 (0)