diff --git a/apps/dokploy/components/dashboard/application/advanced/volumes/update-volume.tsx b/apps/dokploy/components/dashboard/application/advanced/volumes/update-volume.tsx index 2d847fbe2..91e9befed 100644 --- a/apps/dokploy/components/dashboard/application/advanced/volumes/update-volume.tsx +++ b/apps/dokploy/components/dashboard/application/advanced/volumes/update-volume.tsx @@ -119,7 +119,7 @@ export const UpdateVolume = ({ } else if (typeForm === "file") { form.reset({ content: data.content || "", - mountPath: data.mountPath, + mountPath: "/", filePath: data.filePath || "", type: "file", }); @@ -296,15 +296,13 @@ export const UpdateVolume = ({ )} - - - + diff --git a/apps/dokploy/package.json b/apps/dokploy/package.json index a87c9e8c7..e312e522a 100644 --- a/apps/dokploy/package.json +++ b/apps/dokploy/package.json @@ -1,6 +1,6 @@ { "name": "dokploy", - "version": "v0.10.7", + "version": "v0.10.8", "private": true, "license": "Apache-2.0", "type": "module", diff --git a/apps/dokploy/templates/soketi/docker-compose.yml b/apps/dokploy/templates/soketi/docker-compose.yml index 2df681652..1784cdc79 100644 --- a/apps/dokploy/templates/soketi/docker-compose.yml +++ b/apps/dokploy/templates/soketi/docker-compose.yml @@ -1,19 +1,12 @@ -version: '3.3' -services: - stirling-pdf: - image: frooodle/s-pdf:0.30.1 - ports: - - '8080' - volumes: - - training-data:/usr/share/tessdata #Required for extra OCR languages - - extra-configs:/configs - # - /location/of/customFiles:/customFiles/ - # - /location/of/logs:/logs/ - environment: - - DOCKER_ENABLE_SECURITY=false - - INSTALL_BOOK_AND_ADVANCED_HTML_OPS=false - - LANGS=en_GB +version: "3" -volumes: - training-data: {} - extra-configs: {} \ No newline at end of file +services: + soketi: + image: quay.io/soketi/soketi:1.4-16-debian + container_name: soketi + environment: + SOKETI_DEBUG: "1" + SOKETI_HOST: "0.0.0.0" + SOKETI_PORT: "6001" + SOKETI_METRICS_SERVER_PORT: "9601" + restart: unless-stopped