chore: sync OpenAPI specification [skip ci]

Source: Dokploy/dokploy@e102876e4d

Updated: 2026-04-03 23:32:52 UTC
This commit is contained in:
Dokploy Bot
2026-04-03 23:32:52 +00:00
parent 9d01987df9
commit 7921940f98

View File

@@ -12625,6 +12625,107 @@
}
}
},
"/docker.uploadFileToContainer": {
"post": {
"operationId": "docker-uploadFileToContainer",
"tags": [
"docker"
],
"security": [
{
"Authorization": []
}
],
"parameters": [],
"requestBody": {
"required": true,
"content": {
"multipart/form-data": {
"schema": {
"type": "object",
"properties": {
"containerId": {
"type": "string",
"minLength": 1,
"pattern": "^[a-zA-Z0-9.\\-_]+$"
},
"file": {
"type": "string",
"format": "binary"
},
"destinationPath": {
"type": "string",
"minLength": 1
},
"serverId": {
"type": "string"
}
},
"required": [
"containerId",
"file",
"destinationPath"
]
}
}
}
},
"responses": {
"200": {
"description": "Successful response",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {},
"additionalProperties": false
}
}
}
},
"400": {
"description": "Invalid input data",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/error.BAD_REQUEST"
}
}
}
},
"401": {
"description": "Authorization not provided",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/error.UNAUTHORIZED"
}
}
}
},
"403": {
"description": "Insufficient access",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/error.FORBIDDEN"
}
}
}
},
"500": {
"description": "Internal server error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/error.INTERNAL_SERVER_ERROR"
}
}
}
}
}
}
},
"/domain.create": {
"post": {
"operationId": "domain-create",