File tree Expand file tree Collapse file tree 16 files changed +96
-87
lines changed
Expand file tree Collapse file tree 16 files changed +96
-87
lines changed Original file line number Diff line number Diff line change @@ -39,10 +39,17 @@ curl -sSL https://dokploy.com/install.sh | sh
3939
4040Getestete Systems:
4141
42- - Ubuntu 20.04
42+ - Ubuntu 24.04 LTS (Noble Numbat)
43+ - Ubuntu 23.10 (Mantic Minotaur)
44+ - Ubuntu 22.04 LTS (Jammy Jellyfish)
45+ - Ubuntu 20.04 LTS (Focal Fossa)
46+ - Ubuntu 18.04 LTS (Bionic Beaver)
47+ - Debian 12
4348- Debian 11
4449- Fedora 40
4550- Centos 9
51+ - Centos 8
52+
4653
4754## 📄 Dokumentation
4855
Original file line number Diff line number Diff line change @@ -40,10 +40,17 @@ curl -sSL https://dokploy.com/install.sh | sh
4040
4141Проверенные системы:
4242
43- - Ubuntu 20.04
43+ - Ubuntu 24.04 LTS (Noble Numbat)
44+ - Ubuntu 23.10 (Mantic Minotaur)
45+ - Ubuntu 22.04 LTS (Jammy Jellyfish)
46+ - Ubuntu 20.04 LTS (Focal Fossa)
47+ - Ubuntu 18.04 LTS (Bionic Beaver)
48+ - Debian 12
4449- Debian 11
4550- Fedora 40
4651- Centos 9
52+ - Centos 8
53+
4754
4855## 📄 Документация
4956Для подробной документации посетите [ docs.dokploy.com/docs] ( https://docs.dokploy.com ) .
Original file line number Diff line number Diff line change @@ -43,10 +43,17 @@ curl -sSL https://dokploy.com/install.sh | sh
4343
4444经过测试的系统:
4545
46- - Ubuntu 20.04
46+ - Ubuntu 24.04 LTS (Noble Numbat)
47+ - Ubuntu 23.10 (Mantic Minotaur)
48+ - Ubuntu 22.04 LTS (Jammy Jellyfish)
49+ - Ubuntu 20.04 LTS (Focal Fossa)
50+ - Ubuntu 18.04 LTS (Bionic Beaver)
51+ - Debian 12
4752- Debian 11
4853- Fedora 40
4954- Centos 9
55+ - Centos 8
56+
5057
5158## 📄 文档
5259
Original file line number Diff line number Diff line change @@ -42,10 +42,16 @@ curl -sSL https://dokploy.com/install.sh | sh
4242
4343Tested Systems:
4444
45- - Ubuntu 20.04
45+ - Ubuntu 24.04 LTS (Noble Numbat)
46+ - Ubuntu 23.10 (Mantic Minotaur)
47+ - Ubuntu 22.04 LTS (Jammy Jellyfish)
48+ - Ubuntu 20.04 LTS (Focal Fossa)
49+ - Ubuntu 18.04 LTS (Bionic Beaver)
50+ - Debian 12
4651- Debian 11
4752- Fedora 40
4853- Centos 9
54+ - Centos 8
4955
5056## 📄 Documentation
5157
Original file line number Diff line number Diff line change @@ -183,8 +183,7 @@ export const AddPort = ({
183183 < SelectValue placeholder = "Select a protocol" />
184184 </ SelectTrigger >
185185 </ FormControl >
186- < SelectContent defaultValue = { "none" } >
187- < SelectItem value = { "none" } > None</ SelectItem >
186+ < SelectContent >
188187 < SelectItem value = { "tcp" } > TCP</ SelectItem >
189188 < SelectItem value = { "udp" } > UDP</ SelectItem >
190189 </ SelectContent >
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import {
1111} from "@/components/ui/alert-dialog" ;
1212import { Button } from "@/components/ui/button" ;
1313import { api } from "@/utils/api" ;
14+ import { useEffect , useState } from "react" ;
1415import { toast } from "sonner" ;
1516
1617interface Props {
@@ -51,18 +52,14 @@ export const DeployApplication = ({ applicationId }: Props) => {
5152 applicationId,
5253 } )
5354 . then ( async ( ) => {
54- toast . success ( "Application Deploying...." ) ;
55+ toast . success ( "Deploying Application ...." ) ;
5556
5657 await refetch ( ) ;
5758 await deploy ( {
5859 applicationId,
59- } )
60- . then ( ( ) => {
61- toast . success ( "Application Deployed Succesfully" ) ;
62- } )
63- . catch ( ( ) => {
64- toast . error ( "Error to deploy Application" ) ;
65- } ) ;
60+ } ) . catch ( ( ) => {
61+ toast . error ( "Error to deploy Application" ) ;
62+ } ) ;
6663
6764 await refetch ( ) ;
6865 } )
Original file line number Diff line number Diff line change @@ -49,18 +49,14 @@ export const DeployCompose = ({ composeId }: Props) => {
4949 composeStatus : "running" ,
5050 } )
5151 . then ( async ( ) => {
52- toast . success ( "Compose Deploying...." ) ;
52+ toast . success ( "Deploying Compose ...." ) ;
5353
5454 await refetch ( ) ;
5555 await deploy ( {
5656 composeId,
57- } )
58- . then ( ( ) => {
59- toast . success ( "Compose Deployed Succesfully" ) ;
60- } )
61- . catch ( ( ) => {
62- toast . error ( "Error to deploy Compose" ) ;
63- } ) ;
57+ } ) . catch ( ( ) => {
58+ toast . error ( "Error to deploy Compose" ) ;
59+ } ) ;
6460
6561 await refetch ( ) ;
6662 } )
Original file line number Diff line number Diff line change @@ -50,17 +50,13 @@ export const DeployMariadb = ({ mariadbId }: Props) => {
5050 applicationStatus : "running" ,
5151 } )
5252 . then ( async ( ) => {
53- toast . success ( "Database Deploying...." ) ;
53+ toast . success ( "Deploying Database ...." ) ;
5454 await refetch ( ) ;
5555 await deploy ( {
5656 mariadbId,
57- } )
58- . then ( ( ) => {
59- toast . success ( "Database Deployed Succesfully" ) ;
60- } )
61- . catch ( ( ) => {
62- toast . error ( "Error to deploy Database" ) ;
63- } ) ;
57+ } ) . catch ( ( ) => {
58+ toast . error ( "Error to deploy Database" ) ;
59+ } ) ;
6460 await refetch ( ) ;
6561 } )
6662 . catch ( ( e ) => {
Original file line number Diff line number Diff line change @@ -50,17 +50,13 @@ export const DeployMongo = ({ mongoId }: Props) => {
5050 applicationStatus : "running" ,
5151 } )
5252 . then ( async ( ) => {
53- toast . success ( "Database Deploying...." ) ;
53+ toast . success ( "Deploying Database ...." ) ;
5454 await refetch ( ) ;
5555 await deploy ( {
5656 mongoId,
57- } )
58- . then ( ( ) => {
59- toast . success ( "Database Deployed Succesfully" ) ;
60- } )
61- . catch ( ( ) => {
62- toast . error ( "Error to deploy Database" ) ;
63- } ) ;
57+ } ) . catch ( ( ) => {
58+ toast . error ( "Error to deploy Database" ) ;
59+ } ) ;
6460 await refetch ( ) ;
6561 } )
6662 . catch ( ( e ) => {
Original file line number Diff line number Diff line change @@ -50,17 +50,13 @@ export const DeployMysql = ({ mysqlId }: Props) => {
5050 applicationStatus : "running" ,
5151 } )
5252 . then ( async ( ) => {
53- toast . success ( "Database Deploying...." ) ;
53+ toast . success ( "Deploying Database ...." ) ;
5454 await refetch ( ) ;
5555 await deploy ( {
5656 mysqlId,
57- } )
58- . then ( ( ) => {
59- toast . success ( "Database Deployed Succesfully" ) ;
60- } )
61- . catch ( ( ) => {
62- toast . error ( "Error to deploy Database" ) ;
63- } ) ;
57+ } ) . catch ( ( ) => {
58+ toast . error ( "Error to deploy Database" ) ;
59+ } ) ;
6460 await refetch ( ) ;
6561 } )
6662 . catch ( ( e ) => {
You can’t perform that action at this time.
0 commit comments