1
0
Fork 0
mirror of synced 2024-09-13 08:03:33 +12:00

Supply autorestart to executor

This commit is contained in:
Matej Bačo 2024-08-03 09:14:19 +00:00
parent 877a6a3f54
commit bce06a6178
3 changed files with 4 additions and 4 deletions

View file

@ -787,7 +787,7 @@ $image = $this->getParam('image', '');
<<: *x-logging
restart: unless-stopped
stop_signal: SIGINT
image: openruntimes/executor:0.6.2
image: openruntimes/executor:0.6.5
networks:
- appwrite
- runtimes

View file

@ -873,7 +873,7 @@ services:
hostname: exc1
<<: *x-logging
stop_signal: SIGINT
image: openruntimes/executor:0.6.2
image: openruntimes/executor:0.6.5
restart: unless-stopped
networks:
- appwrite

View file

@ -194,8 +194,7 @@ class Executor
}
$runtimeId = "$projectId-$deploymentId";
$route = '/runtimes/' . $runtimeId . '/execution';
$route = '/runtimes/' . $runtimeId . '/executions';
// Remove after migration
if ($version == 'v3') {
@ -217,6 +216,7 @@ class Executor
'version' => $version,
'runtimeEntrypoint' => $runtimeEntrypoint,
'logging' => $logging,
'restartPolicy' => 'always' // Once utopia/orchestration has it, use DockerAPI::ALWAYS (0.13+)
];
if(!empty($body)) {