fix: set connection string on publicity change

This commit is contained in:
Andras Bacsai
2023-07-18 13:01:10 +02:00
parent 5cb0bcfd9b
commit b2ffd9183b
3 changed files with 3 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ import { saveBuildLog } from './buildPacks/common';
import { scheduler } from './scheduler';
import type { ExecaChildProcess } from 'execa';
export const version = '3.12.33';
export const version = '3.12.34';
export const isDev = process.env.NODE_ENV === 'development';
export const proxyPort = process.env.COOLIFY_PROXY_PORT;
export const proxySecurePort = process.env.COOLIFY_PROXY_SECURE_PORT;

View File

@@ -109,6 +109,7 @@
if ($status.database.isPublic) {
database.publicPort = publicPort;
}
generateUrl();
} catch (error) {
return errorNotification(error);
} finally {

View File

@@ -1,7 +1,7 @@
{
"name": "coolify",
"description": "An open-source & self-hostable Heroku / Netlify alternative.",
"version": "3.12.33",
"version": "3.12.34",
"license": "Apache-2.0",
"repository": "github:coollabsio/coolify",
"scripts": {