mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-17 20:49:32 +00:00
fix: n8n double mount
version++
This commit is contained in:
@@ -18,7 +18,7 @@ import { scheduler } from './scheduler';
|
||||
import type { ExecaChildProcess } from 'execa';
|
||||
import { FastifyReply } from 'fastify';
|
||||
|
||||
export const version = '3.12.35';
|
||||
export const version = '3.12.36';
|
||||
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;
|
||||
|
||||
@@ -477,7 +477,7 @@ export async function saveServiceType(
|
||||
const [volumeName, path] = volume.split(':');
|
||||
if (!volumeName.startsWith('/')) {
|
||||
const found = await prisma.servicePersistentStorage.findFirst({
|
||||
where: { volumeName, serviceId: id }
|
||||
where: { volumeName, serviceId: id, path }
|
||||
});
|
||||
if (!found) {
|
||||
await prisma.servicePersistentStorage.create({
|
||||
|
||||
Reference in New Issue
Block a user