diff --git a/apps/docs/content/docs/core/manual-installation.mdx b/apps/docs/content/docs/core/manual-installation.mdx index 34222d2..2abfc60 100644 --- a/apps/docs/content/docs/core/manual-installation.mdx +++ b/apps/docs/content/docs/core/manual-installation.mdx @@ -112,8 +112,6 @@ docker service create \ --network dokploy-network \ --mount type=bind,source=/var/run/docker.sock,target=/var/run/docker.sock \ --mount type=bind,source=/etc/dokploy,target=/etc/dokploy \ - --publish published=$DOKPLOY_HTTP_PORT,target=80,mode=host \ - --publish published=$DOKPLOY_HTTPS_PORT,target=443,mode=host \ --publish published=$DOKPLOY_APP_PORT,target=3000,mode=host \ --update-parallelism 1 \ --update-order stop-first \ diff --git a/apps/website/public/install.sh b/apps/website/public/install.sh index 0a28bed..0587ade 100644 --- a/apps/website/public/install.sh +++ b/apps/website/public/install.sh @@ -96,8 +96,6 @@ install_dokploy() { --mount type=bind,source=/var/run/docker.sock,target=/var/run/docker.sock \ --mount type=bind,source=/etc/dokploy,target=/etc/dokploy \ --mount type=volume,source=dokploy-docker-config,target=/root/.docker \ - --publish published=$DOKPLOY_HTTP_PORT,target=80,mode=host \ - --publish published=$DOKPLOY_HTTPS_PORT,target=443,mode=host \ --publish published=$DOKPLOY_APP_PORT,target=3000,mode=host \ --update-parallelism 1 \ --update-order stop-first \