lasthourcloud/app/Actions/Server/InstallDocker.php

111 lines
5.2 KiB
PHP
Raw Normal View History

2023-05-04 07:11:11 +00:00
<?php
namespace App\Actions\Server;
use App\Models\Server;
2023-06-23 07:58:15 +00:00
use App\Models\StandaloneDocker;
2024-06-10 20:43:34 +00:00
use Lorisleiva\Actions\Concerns\AsAction;
2023-05-04 07:11:11 +00:00
class InstallDocker
{
2023-10-09 09:00:18 +00:00
use AsAction;
2024-06-10 20:43:34 +00:00
2023-11-21 11:07:06 +00:00
public function handle(Server $server)
2023-05-04 07:11:11 +00:00
{
2023-11-21 11:07:06 +00:00
$supported_os_type = $server->validateOS();
2024-06-10 20:43:34 +00:00
if (! $supported_os_type) {
2024-03-27 10:07:29 +00:00
throw new \Exception('Server OS type is not supported for automated installation. Please install Docker manually before continuing: <a target="_blank" class="underline" href="https://coolify.io/docs/installation#manually">documentation</a>.');
2023-11-21 11:07:06 +00:00
}
2024-06-10 20:43:34 +00:00
ray('Installing Docker on server: '.$server->name.' ('.$server->ip.')'.' with OS type: '.$supported_os_type);
2023-09-05 13:43:56 +00:00
$dockerVersion = '24.0';
$config = base64_encode('{
"log-driver": "json-file",
"log-opts": {
"max-size": "10m",
"max-file": "3"
}
}');
$found = StandaloneDocker::where('server_id', $server->id);
2023-09-18 08:44:32 +00:00
if ($found->count() == 0 && $server->id) {
StandaloneDocker::create([
'name' => 'coolify',
'network' => 'coolify',
'server_id' => $server->id,
]);
}
$command = collect([]);
2023-09-18 09:21:10 +00:00
if (isDev() && $server->id === 0) {
$command = $command->merge([
"echo 'Installing Prerequisites...'",
2024-06-10 20:43:34 +00:00
'sleep 1',
"echo 'Installing Docker Engine...'",
"echo 'Configuring Docker Engine (merging existing configuration with the required)...'",
2024-06-10 20:43:34 +00:00
'sleep 4',
"echo 'Restarting Docker Engine...'",
2024-06-10 20:43:34 +00:00
'ls -l /tmp',
]);
2024-06-10 20:43:34 +00:00
return remote_process($command, $server);
2023-08-23 08:14:39 +00:00
} else {
if ($supported_os_type->contains('debian')) {
$command = $command->merge([
"echo 'Installing Prerequisites...'",
2024-06-10 20:43:34 +00:00
'apt-get update -y',
'command -v curl >/dev/null || apt install -y curl',
'command -v wget >/dev/null || apt install -y wget',
'command -v git >/dev/null || apt install -y git',
'command -v jq >/dev/null || apt install -y jq',
]);
2024-06-10 20:43:34 +00:00
} elseif ($supported_os_type->contains('rhel')) {
$command = $command->merge([
"echo 'Installing Prerequisites...'",
2024-06-10 20:43:34 +00:00
'command -v curl >/dev/null || dnf install -y curl',
'command -v wget >/dev/null || dnf install -y wget',
'command -v git >/dev/null || dnf install -y git',
'command -v jq >/dev/null || dnf install -y jq',
]);
2024-06-10 20:43:34 +00:00
} elseif ($supported_os_type->contains('sles')) {
$command = $command->merge([
"echo 'Installing Prerequisites...'",
2024-06-10 20:43:34 +00:00
'zypper update -y',
'command -v curl >/dev/null || zypper install -y curl',
'command -v wget >/dev/null || zypper install -y wget',
'command -v git >/dev/null || zypper install -y git',
'command -v jq >/dev/null || zypper install -y jq',
]);
} else {
throw new \Exception('Unsupported OS');
}
$command = $command->merge([
"echo 'Installing Docker Engine...'",
"curl https://releases.rancher.com/install-docker/{$dockerVersion}.sh | sh || curl https://get.docker.com | sh -s -- --version {$dockerVersion}",
"echo 'Configuring Docker Engine (merging existing configuration with the required)...'",
2024-06-10 20:43:34 +00:00
'test -s /etc/docker/daemon.json && cp /etc/docker/daemon.json "/etc/docker/daemon.json.original-$(date +"%Y%m%d-%H%M%S")"',
"test ! -s /etc/docker/daemon.json && echo '{$config}' | base64 -d | tee /etc/docker/daemon.json > /dev/null",
"echo '{$config}' | base64 -d | tee /etc/docker/daemon.json.coolify > /dev/null",
2024-06-10 20:43:34 +00:00
'jq . /etc/docker/daemon.json.coolify | tee /etc/docker/daemon.json.coolify.pretty > /dev/null',
'mv /etc/docker/daemon.json.coolify.pretty /etc/docker/daemon.json.coolify',
"jq -s '.[0] * .[1]' /etc/docker/daemon.json.coolify /etc/docker/daemon.json | tee /etc/docker/daemon.json.appended > /dev/null",
2024-06-10 20:43:34 +00:00
'mv /etc/docker/daemon.json.appended /etc/docker/daemon.json',
"echo 'Restarting Docker Engine...'",
2024-06-10 20:43:34 +00:00
'systemctl enable docker >/dev/null 2>&1 || true',
'systemctl restart docker',
]);
2023-11-29 09:06:52 +00:00
if ($server->isSwarm()) {
$command = $command->merge([
2024-06-10 20:43:34 +00:00
'docker network create --attachable --driver overlay coolify-overlay >/dev/null 2>&1 || true',
2023-11-29 09:06:52 +00:00
]);
} else {
$command = $command->merge([
2024-06-10 20:43:34 +00:00
'docker network create --attachable coolify >/dev/null 2>&1 || true',
2023-11-29 09:06:52 +00:00
]);
$command = $command->merge([
"echo 'Done!'",
]);
}
2024-06-10 20:43:34 +00:00
return remote_process($command, $server);
2023-09-18 09:21:10 +00:00
}
2023-05-04 07:11:11 +00:00
}
}