mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-06-19 14:15:21 +02:00
101 lines
2.5 KiB
TypeScript
101 lines
2.5 KiB
TypeScript
import type { WriteStream } from "node:fs";
|
|
import { join } from "node:path";
|
|
import type { ApplicationNested } from "../builders";
|
|
import { spawnAsync } from "../process/spawnAsync";
|
|
|
|
export const uploadImage = async (
|
|
application: ApplicationNested,
|
|
writeStream: WriteStream,
|
|
) => {
|
|
const registry = application.registry;
|
|
|
|
if (!registry) {
|
|
throw new Error("Registry not found");
|
|
}
|
|
|
|
const { registryUrl, imagePrefix, registryType } = registry;
|
|
const { appName } = application;
|
|
const imageName = `${appName}:latest`;
|
|
|
|
const finalURL = registryUrl;
|
|
|
|
const registryTag = join(finalURL, imagePrefix || "", imageName);
|
|
|
|
try {
|
|
writeStream.write(
|
|
`📦 [Enabled Registry] Uploading image to ${registry.registryType} | ${registryTag} | ${finalURL}\n`,
|
|
);
|
|
await spawnAsync(
|
|
"docker",
|
|
["login", finalURL, "-u", registry.username, "-p", registry.password],
|
|
(data) => {
|
|
if (writeStream.writable) {
|
|
writeStream.write(data);
|
|
}
|
|
},
|
|
);
|
|
|
|
await spawnAsync("docker", ["tag", imageName, registryTag], (data) => {
|
|
if (writeStream.writable) {
|
|
writeStream.write(data);
|
|
}
|
|
});
|
|
|
|
console.log("docker push ", registryTag);
|
|
|
|
await spawnAsync("docker", ["push", registryTag], (data) => {
|
|
if (writeStream.writable) {
|
|
writeStream.write(data);
|
|
}
|
|
});
|
|
} catch (error) {
|
|
console.log(error);
|
|
throw error;
|
|
}
|
|
};
|
|
|
|
export const uploadImageRemoteCommand = (
|
|
application: ApplicationNested,
|
|
logPath: string,
|
|
) => {
|
|
const registry = application.registry;
|
|
|
|
if (!registry) {
|
|
throw new Error("Registry not found");
|
|
}
|
|
|
|
const { registryUrl, imagePrefix } = registry;
|
|
const { appName } = application;
|
|
const imageName = `${appName}:latest`;
|
|
|
|
const finalURL = registryUrl;
|
|
|
|
const registryTag = join(finalURL, imagePrefix || "", imageName);
|
|
|
|
try {
|
|
const command = `
|
|
echo "📦 [Enabled Registry] Uploading image to '${registry.registryType}' | '${registryTag}'" >> ${logPath};
|
|
docker login ${finalURL} -u ${registry.username} -p ${registry.password} >> ${logPath} 2>> ${logPath} || {
|
|
echo "❌ DockerHub Failed" >> ${logPath};
|
|
exit 1;
|
|
}
|
|
echo "✅ DockerHub Login Success" >> ${logPath};
|
|
docker tag ${imageName} ${registryTag} >> ${logPath} 2>> ${logPath} || {
|
|
echo "❌ Error tagging image" >> ${logPath};
|
|
exit 1;
|
|
}
|
|
echo "✅ Image Tagged" >> ${logPath};
|
|
|
|
docker push ${registryTag} 2>> ${logPath} || {
|
|
echo "❌ Error pushing image" >> ${logPath};
|
|
exit 1;
|
|
}
|
|
echo "✅ Image Pushed" >> ${logPath};
|
|
`;
|
|
return command;
|
|
} catch (error) {
|
|
console.log(error);
|
|
throw error;
|
|
}
|
|
};
|