Skip to content

Commit

Permalink
Merge pull request coollabsio#441 from coollabsio/next
Browse files Browse the repository at this point in the history
fix: versions
  • Loading branch information
andrasbacsai authored May 31, 2022
2 parents d3e9aea + 95832d3 commit d9489a2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion prisma/seed.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ async function main() {
}
});
}
if (compare('2.9.2', version) >= 0) {
const versions = ['2.9.2', '2.9.3'];
if (versions.includes(version)) {
// Force stop Coolify Proxy, as it had a bug in < 2.9.2. TrustProxy + api.insecure
try {
await asyncExecShell(`docker stop -t 0 coolify-proxy && docker rm coolify-proxy`);
Expand Down

0 comments on commit d9489a2

Please sign in to comment.