Skip to content

Commit eb80a7e

Browse files
committed
chore: Update Docker commands to start proxy
1 parent 57d8930 commit eb80a7e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/Actions/Proxy/StartProxy.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ public function handle(Server $server, bool $async = true, bool $force = false):
4747
"echo 'Pulling docker image.'",
4848
'docker compose pull',
4949
"echo 'Stopping existing coolify-proxy.'",
50-
'docker compose down -v --remove-orphans > /dev/null 2>&1',
50+
'docker stop -t 10 coolify-proxy || true',
51+
'docker rm coolify-proxy || true',
5152
"echo 'Starting coolify-proxy.'",
5253
'docker compose up -d --remove-orphans',
5354
"echo 'Proxy started successfully.'",

0 commit comments

Comments
 (0)