mirror of
https://github.com/CyberL1/dlinux-dashboard.git
synced 2025-04-03 06:28:37 -04:00
40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
import type {
|
|
CreateContainerBody,
|
|
RemoveContainerParams,
|
|
RemoveContainerQuery,
|
|
} from "#src/types/Container.ts";
|
|
import { createContainer, getContainer } from "#src/utils/containers.ts";
|
|
import { getImage } from "#src/utils/images.ts";
|
|
import type { FastifyInstance, FastifyRequest } from "fastify";
|
|
|
|
export default (fastify: FastifyInstance) => {
|
|
fastify.post(
|
|
"/",
|
|
async (
|
|
req: FastifyRequest<{
|
|
Params: RemoveContainerParams;
|
|
Querystring: RemoveContainerQuery;
|
|
Body: CreateContainerBody;
|
|
}>,
|
|
) => {
|
|
if (!(await getImage(req.body?.image).inspect()).Id) {
|
|
return;
|
|
}
|
|
|
|
const oldContainer = getContainer(req.params.id);
|
|
const name = (await oldContainer.inspect()).Name;
|
|
|
|
const image =
|
|
req.body?.image ||
|
|
(await oldContainer.inspect()).Config.Labels["code-containers.image"];
|
|
|
|
await oldContainer.remove({ force: req.query.force === "true" });
|
|
|
|
const newContainer = await createContainer({ name, image });
|
|
await newContainer.start();
|
|
|
|
return newContainer.inspect();
|
|
},
|
|
);
|
|
};
|