Fix Docker network creation command in
StartService.php
This commit is contained in:
parent
56a977c676
commit
74830b12f3
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ public function handle(Service $service)
|
|||
$commands[] = "cd " . $service->workdir();
|
||||
$commands[] = "echo '####### Saved configuration files to {$service->workdir()}.'";
|
||||
$commands[] = "echo '####### Creating Docker network.'";
|
||||
$commands[] = "docker network create --attachable {$service->uuid} >/dev/null 2>/dev/null || true";
|
||||
$commands[] = "docker network create --attachable '{$service->uuid}' >/dev/null || true";
|
||||
$commands[] = "echo '####### Starting service {$service->name} on {$service->server->name}.'";
|
||||
$commands[] = "echo '####### Pulling images.'";
|
||||
$commands[] = "docker compose pull";
|
||||
|
|
|
|||
Loading…
Reference in a new issue