|
|
import type { WriteStream } from "node:fs"; |
|
|
import { prepareEnvironmentVariables } from "@dokploy/server/utils/docker/utils"; |
|
|
import type { ApplicationNested } from "."; |
|
|
import { |
|
|
getBuildAppDirectory, |
|
|
getDockerContextPath, |
|
|
} from "../filesystem/directory"; |
|
|
import { spawnAsync } from "../process/spawnAsync"; |
|
|
import { createEnvFile, createEnvFileCommand } from "./utils"; |
|
|
|
|
|
export const buildCustomDocker = async ( |
|
|
application: ApplicationNested, |
|
|
writeStream: WriteStream, |
|
|
) => { |
|
|
const { |
|
|
appName, |
|
|
env, |
|
|
publishDirectory, |
|
|
buildArgs, |
|
|
dockerBuildStage, |
|
|
cleanCache, |
|
|
} = application; |
|
|
const dockerFilePath = getBuildAppDirectory(application); |
|
|
try { |
|
|
const image = `${appName}`; |
|
|
|
|
|
const defaultContextPath = |
|
|
dockerFilePath.substring(0, dockerFilePath.lastIndexOf("/") + 1) || "."; |
|
|
const args = prepareEnvironmentVariables( |
|
|
buildArgs, |
|
|
application.project.env, |
|
|
); |
|
|
|
|
|
const dockerContextPath = getDockerContextPath(application); |
|
|
|
|
|
const commandArgs = ["build", "-t", image, "-f", dockerFilePath, "."]; |
|
|
|
|
|
if (cleanCache) { |
|
|
commandArgs.push("--no-cache"); |
|
|
} |
|
|
|
|
|
if (dockerBuildStage) { |
|
|
commandArgs.push("--target", dockerBuildStage); |
|
|
} |
|
|
|
|
|
for (const arg of args) { |
|
|
commandArgs.push("--build-arg", arg); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!publishDirectory) { |
|
|
createEnvFile(dockerFilePath, env, application.project.env); |
|
|
} |
|
|
|
|
|
await spawnAsync( |
|
|
"docker", |
|
|
commandArgs, |
|
|
(data) => { |
|
|
if (writeStream.writable) { |
|
|
writeStream.write(data); |
|
|
} |
|
|
}, |
|
|
{ |
|
|
cwd: dockerContextPath || defaultContextPath, |
|
|
}, |
|
|
); |
|
|
} catch (error) { |
|
|
throw error; |
|
|
} |
|
|
}; |
|
|
|
|
|
export const getDockerCommand = ( |
|
|
application: ApplicationNested, |
|
|
logPath: string, |
|
|
) => { |
|
|
const { |
|
|
appName, |
|
|
env, |
|
|
publishDirectory, |
|
|
buildArgs, |
|
|
dockerBuildStage, |
|
|
cleanCache, |
|
|
} = application; |
|
|
const dockerFilePath = getBuildAppDirectory(application); |
|
|
|
|
|
try { |
|
|
const image = `${appName}`; |
|
|
|
|
|
const defaultContextPath = |
|
|
dockerFilePath.substring(0, dockerFilePath.lastIndexOf("/") + 1) || "."; |
|
|
const args = prepareEnvironmentVariables( |
|
|
buildArgs, |
|
|
application.project.env, |
|
|
); |
|
|
|
|
|
const dockerContextPath = |
|
|
getDockerContextPath(application) || defaultContextPath; |
|
|
|
|
|
const commandArgs = ["build", "-t", image, "-f", dockerFilePath, "."]; |
|
|
|
|
|
if (dockerBuildStage) { |
|
|
commandArgs.push("--target", dockerBuildStage); |
|
|
} |
|
|
|
|
|
if (cleanCache) { |
|
|
commandArgs.push("--no-cache"); |
|
|
} |
|
|
|
|
|
for (const arg of args) { |
|
|
commandArgs.push("--build-arg", `'${arg}'`); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let command = ""; |
|
|
if (!publishDirectory) { |
|
|
command += createEnvFileCommand( |
|
|
dockerFilePath, |
|
|
env, |
|
|
application.project.env, |
|
|
); |
|
|
} |
|
|
|
|
|
command += ` |
|
|
echo "Building ${appName}" >> ${logPath}; |
|
|
cd ${dockerContextPath} >> ${logPath} 2>> ${logPath} || { |
|
|
echo "❌ The path ${dockerContextPath} does not exist" >> ${logPath}; |
|
|
exit 1; |
|
|
} |
|
|
|
|
|
docker ${commandArgs.join(" ")} >> ${logPath} 2>> ${logPath} || { |
|
|
echo "❌ Docker build failed" >> ${logPath}; |
|
|
exit 1; |
|
|
} |
|
|
echo "✅ Docker build completed." >> ${logPath}; |
|
|
`; |
|
|
|
|
|
return command; |
|
|
} catch (error) { |
|
|
throw error; |
|
|
} |
|
|
}; |
|
|
|