mirror of
https://github.com/Dokploy/website
synced 2025-06-26 18:16:01 +00:00
docs: add manual upgrade instructions and clarify domain port requirements for static build types
This commit is contained in:
parent
fc5e3a55d4
commit
40c67341e9
@ -88,6 +88,9 @@ Static build type is used to server static applications, it will use a NGINX Opt
|
||||
|
||||
Dokploy will copy everything from the `Root` directory and will mount it to the `/usr/share/nginx/html` directory, and will use a NGINX Optimized Dockerfile to run your application.
|
||||
|
||||
<Callout type="info">
|
||||
Ensure to use the port `80` when creating a domain.
|
||||
</Callout>
|
||||
|
||||
## Recomendations
|
||||
|
||||
|
@ -55,5 +55,8 @@ Proper domain configuration is crucial for the accessibility and security of you
|
||||
|
||||
The "Container Port" specified in the domain settings is exclusively for routing traffic to the correct application container through Traefik, and does not expose the port directly to the internet. This is fundamentally different from the port settings in the "Advanced -> Ports" section, which are used to directly expose application ports. The container port in the domain settings ensures that Traefik can internally direct traffic to the specified port within the container based on the domain configuration.
|
||||
|
||||
## Static Build Type
|
||||
|
||||
When using the `Static` build type or `Nixpacks` and `Publish Directory` build type, you need to use the port `80` when creating a domain.
|
||||
|
||||
|
||||
|
@ -275,3 +275,12 @@ docker service create \
|
||||
--update-order stop-first \
|
||||
dokploy/dokploy:latest
|
||||
```
|
||||
|
||||
## Manual Upgrade
|
||||
|
||||
To upgrade Dokploy manually, you can use the following command:
|
||||
|
||||
```bash
|
||||
curl -sSL https://dokploy.com/install.sh | sh -s update
|
||||
```
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user