mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-25 12:33:35 +00:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7325353ced | ||
|
|
68f5b32876 | ||
|
|
8d4eaad920 | ||
|
|
4b38865cc9 |
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "coolify",
|
"name": "coolify",
|
||||||
"description": "An open-source & self-hostable Heroku / Netlify alternative.",
|
"description": "An open-source & self-hostable Heroku / Netlify alternative.",
|
||||||
"version": "2.6.1",
|
"version": "2.6.3",
|
||||||
"license": "AGPL-3.0",
|
"license": "AGPL-3.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "docker-compose -f docker-compose-dev.yaml up -d && cross-env NODE_ENV=development & svelte-kit dev --host 0.0.0.0",
|
"dev": "docker-compose -f docker-compose-dev.yaml up -d && cross-env NODE_ENV=development & svelte-kit dev --host 0.0.0.0",
|
||||||
|
|||||||
@@ -8,14 +8,16 @@ import { staticDeployments } from '$lib/components/common';
|
|||||||
const staticApps = ['static', 'react', 'vuejs', 'svelte', 'gatsby', 'astro', 'eleventy'];
|
const staticApps = ['static', 'react', 'vuejs', 'svelte', 'gatsby', 'astro', 'eleventy'];
|
||||||
const nodeBased = [
|
const nodeBased = [
|
||||||
'react',
|
'react',
|
||||||
|
'preact',
|
||||||
'vuejs',
|
'vuejs',
|
||||||
'svelte',
|
'svelte',
|
||||||
'gatsby',
|
'gatsby',
|
||||||
'php',
|
|
||||||
'astro',
|
'astro',
|
||||||
'eleventy',
|
'eleventy',
|
||||||
'node',
|
'node',
|
||||||
'nestjs'
|
'nestjs',
|
||||||
|
'nuxtjs',
|
||||||
|
'nextjs'
|
||||||
];
|
];
|
||||||
|
|
||||||
export function makeLabelForStandaloneApplication({
|
export function makeLabelForStandaloneApplication({
|
||||||
|
|||||||
@@ -138,7 +138,18 @@ export async function getApplicationWebhook({
|
|||||||
return s;
|
return s;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
return { ...application };
|
const { baseImage, baseBuildImage, baseBuildImages, baseImages } = setDefaultBaseImage(
|
||||||
|
application.buildPack
|
||||||
|
);
|
||||||
|
|
||||||
|
// Set default build images
|
||||||
|
if (!application.baseImage) {
|
||||||
|
application.baseImage = baseImage;
|
||||||
|
}
|
||||||
|
if (!application.baseBuildImage) {
|
||||||
|
application.baseBuildImage = baseBuildImage;
|
||||||
|
}
|
||||||
|
return { ...application, baseBuildImages, baseImages };
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
throw { status: 404, body: { message: e.message } };
|
throw { status: 404, body: { message: e.message } };
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -184,7 +184,7 @@
|
|||||||
"git_source": "Git Source",
|
"git_source": "Git Source",
|
||||||
"git_repository": "Git Repository",
|
"git_repository": "Git Repository",
|
||||||
"build_pack": "Build Pack",
|
"build_pack": "Build Pack",
|
||||||
"base_image": "Deplyoment Image",
|
"base_image": "Deployment Image",
|
||||||
"base_image_explainer": "Image that will be used for the deployment.",
|
"base_image_explainer": "Image that will be used for the deployment.",
|
||||||
"base_build_image": "Build Image",
|
"base_build_image": "Build Image",
|
||||||
"base_build_image_explainer": "Image that will be used during the build process.",
|
"base_build_image_explainer": "Image that will be used during the build process.",
|
||||||
|
|||||||
Reference in New Issue
Block a user