Files
portainer/app/react/common/stacks/queries/useCreateStack/createStandaloneStackFromFileContent.ts
2025-12-17 13:02:19 +02:00

41 lines
1.1 KiB
TypeScript

import axios, { parseAxiosError } from '@CE/portainer/services/axios';
import { Pair } from '@CE/react/portainer/settings/types';
import { EnvironmentId } from '@CE/react/portainer/environments/types';
import { Stack } from '../../types';
import { buildCreateUrl } from './buildUrl';
export interface StandaloneFileContentPayload {
/** Name of the stack */
name: string;
stackFileContent: string;
/** List of environment variables */
env?: Array<Pair>;
/** Whether the stack is from an app template */
fromAppTemplate?: boolean;
/** A UUID to identify a webhook. The stack will be force updated and pull the latest image when the webhook was invoked. */
webhook?: string;
environmentId: EnvironmentId;
}
export async function createStandaloneStackFromFileContent({
environmentId,
...payload
}: StandaloneFileContentPayload) {
try {
const { data } = await axios.post<Stack>(
buildCreateUrl('standalone', 'string'),
payload,
{
params: { endpointId: environmentId },
}
);
return data;
} catch (e) {
throw parseAxiosError(e as Error);
}
}