File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ public function handle(Service $service)
20
20
$ commands [] = "docker network inspect $ service ->uuid >/dev/null 2>&1 || docker network create --attachable $ service ->uuid " ;
21
21
$ commands [] = 'echo Starting service. ' ;
22
22
$ commands [] = "echo 'Pulling images.' " ;
23
- $ commands [] = 'docker compose pull --policy always ' ;
23
+ $ commands [] = 'docker compose pull ' ;
24
24
$ commands [] = "echo 'Starting containers.' " ;
25
25
$ commands [] = 'docker compose up -d --remove-orphans --force-recreate --build ' ;
26
26
$ commands [] = "docker network connect $ service ->uuid coolify-proxy >/dev/null 2>&1 || true " ;
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ public function handle(Service $resource)
15
15
16
16
$ commands [] = 'cd ' .$ resource ->workdir ();
17
17
$ commands [] = "echo 'Saved configuration files to {$ resource ->workdir ()}.' " ;
18
- $ commands [] = 'docker compose pull --policy always ' ;
18
+ $ commands [] = 'docker compose pull ' ;
19
19
20
20
$ server = data_get ($ resource , 'server ' );
21
21
You can’t perform that action at this time.
0 commit comments