proxyPath(); $docker_compose_yml_base64 = base64_encode($configuration); // Update the saved settings hash $server->proxy->last_saved_settings = str($docker_compose_yml_base64)->pipe('md5')->value; $server->save(); // Transfer the configuration file to the server instant_remote_process([ "mkdir -p $proxy_path", [ 'transfer_file' => [ 'content' => base64_decode($docker_compose_yml_base64), 'destination' => "$proxy_path/docker-compose.yml", ], ], ], $server); } }