fix: storage for compose bp + debug on
This commit is contained in:
		@@ -470,9 +470,9 @@ export const saveBuildLog = async ({
 | 
			
		||||
	const addTimestamp = `[${generateTimestamp()}] ${line}`;
 | 
			
		||||
	const fluentBitUrl = isDev ? process.env.COOLIFY_CONTAINER_DEV === 'true' ? 'http://coolify-fluentbit:24224' : 'http://localhost:24224' : 'http://coolify-fluentbit:24224';
 | 
			
		||||
 | 
			
		||||
	if (isDev && !process.env.COOLIFY_CONTAINER_DEV) {
 | 
			
		||||
	// if (isDev && !process.env.COOLIFY_CONTAINER_DEV) {
 | 
			
		||||
		console.debug(`[${applicationId}] ${addTimestamp}`);
 | 
			
		||||
	}
 | 
			
		||||
	// }
 | 
			
		||||
	try {
 | 
			
		||||
		return await got.post(`${fluentBitUrl}/${applicationId}_buildlog_${buildId}.csv`, {
 | 
			
		||||
			json: {
 | 
			
		||||
 
 | 
			
		||||
@@ -86,9 +86,11 @@ export default async function (data) {
 | 
			
		||||
                let [v, path, permission] = volume.split(':');
 | 
			
		||||
                if (!path) {
 | 
			
		||||
                    path = v;
 | 
			
		||||
                    v = `${applicationId}${v.replace(/\//gi, '-')}`
 | 
			
		||||
                    // v = `${applicationId}${v.replace(/\//gi, '-').replace(/\./gi, '')}`
 | 
			
		||||
                    v = `${applicationId}${v}`
 | 
			
		||||
                } else {
 | 
			
		||||
                    v = `${applicationId}-${v}`
 | 
			
		||||
                    // v = `${applicationId}${v.replace(/\//gi, '-').replace(/\./gi, '')}`
 | 
			
		||||
                    v = `${applicationId}${v}`
 | 
			
		||||
                }
 | 
			
		||||
                composeVolumes[v] = {
 | 
			
		||||
                    name: v
 | 
			
		||||
 
 | 
			
		||||
@@ -9,7 +9,7 @@ Bree.extend(TSBree);
 | 
			
		||||
 | 
			
		||||
const options: any = {
 | 
			
		||||
	defaultExtension: 'js',
 | 
			
		||||
	logger: new Cabin(),
 | 
			
		||||
	logger: false,
 | 
			
		||||
	// logger: false,
 | 
			
		||||
	// workerMessageHandler: async ({ name, message }) => {
 | 
			
		||||
	// 	if (name === 'deployApplication' && message?.deploying) {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user