From 7921940f9835287100f31891525885ec13dca5b0 Mon Sep 17 00:00:00 2001 From: Dokploy Bot Date: Fri, 3 Apr 2026 23:32:52 +0000 Subject: [PATCH] chore: sync OpenAPI specification [skip ci] Source: Dokploy/dokploy@e102876e4d772609f0e2ecba22e13d6369d9cf5d Updated: 2026-04-03 23:32:52 UTC --- apps/docs/public/openapi.json | 101 ++++++++++++++++++++++++++++++++++ 1 file changed, 101 insertions(+) diff --git a/apps/docs/public/openapi.json b/apps/docs/public/openapi.json index f7e0d59..1ebc18c 100644 --- a/apps/docs/public/openapi.json +++ b/apps/docs/public/openapi.json @@ -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",