Plug ins must be placed in the apps directory to run normally

I installed nextcloud in docker and mapped custom_ Then I found that the plug-ins installed from the app store can’t work normally. After I enter docker and move the plug-ins in directory custom_apps to directory apps, they will work normally.

This is my profile
’
$CONFIG = array (
‘memcache.local’ => ‘\OC\Memcache\’,
‘memcache.locking’ => ‘\OC\Memcache\Redis’,
‘redis’ =>
array (
‘host’ => ‘nextcloud-redis’,
‘port’ => 6379,
),
‘apps_paths’ =>
array (
0 =>
array (
‘path’ => ‘/var/www/html/apps’,
‘url’ => ‘/apps’,
‘writable’ => false,
),
1 =>
array (
‘path’ => ‘/var/www/html/custom_apps’,
‘url’ => ‘/custom_apps’,
‘writable’ => true,
),
),
‘instanceid’ => ‘’,
‘passwordsalt’ => ‘+’,
‘secret’ => ‘+’,
‘trusted_domains’ =>
array (
0 => ‘’,
1 => ‘’,
),
‘datadirectory’ => ‘/var/www/html/data’,
‘dbtype’ => ‘mysql’,
‘version’ => ‘20.0.0.9’,
‘overwrite.cli.url’ => ‘’,
‘dbname’ => ‘nextcloud’,
‘dbhost’ => ‘db:3306’,
‘dbport’ => ‘’,
‘dbtableprefix’ => ‘oc_’,
‘mysql.utf8mb4’ => true,
‘dbuser’ => ‘’,
‘dbpassword’ => ‘’,
‘installed’ => true,
‘app_install_overwrite’ =>
array (
0 => ‘unsplash’,
1 => ‘sharingpath’,
2 => ‘files_downloadactivity’,
3 => ‘files_trackdownloads’,
4 => ‘contacts’,
5 => ‘hsts’,
6 => ‘extract’,
7 => ‘files_3d’,
),
‘theme’ => ‘’,
‘loglevel’ => 2,
‘maintenance’ => false,
);

’