diff --git a/apps/docs/content/docs/core/manual-installation.mdx b/apps/docs/content/docs/core/manual-installation.mdx index a4cd347..ce8f6af 100644 --- a/apps/docs/content/docs/core/manual-installation.mdx +++ b/apps/docs/content/docs/core/manual-installation.mdx @@ -133,14 +133,14 @@ install_dokploy() { --env POSTGRES_USER=dokploy \ --env POSTGRES_DB=dokploy \ --env POSTGRES_PASSWORD=amukds4wi9001583845717ad2 \ - --mount type=volume,source=dokploy-postgres-database,target=/var/lib/postgresql/data \ + --mount type=volume,source=dokploy-postgres,target=/var/lib/postgresql/data \ postgres:16 docker service create \ --name dokploy-redis \ --constraint 'node.role==manager' \ --network dokploy-network \ - --mount type=volume,source=redis-data-volume,target=/data \ + --mount type=volume,source=dokploy-redis,target=/data \ redis:7 docker pull traefik:v3.6.1 @@ -153,7 +153,7 @@ install_dokploy() { --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 \ - --mount type=volume,source=dokploy-docker-config,target=/root/.docker \ + --mount type=volume,source=dokploy,target=/root/.docker \ --publish published=3000,target=3000,mode=host \ --update-parallelism 1 \ --update-order stop-first \ diff --git a/apps/docs/content/docs/core/troubleshooting.mdx b/apps/docs/content/docs/core/troubleshooting.mdx index 383f29a..ea0ffbf 100644 --- a/apps/docs/content/docs/core/troubleshooting.mdx +++ b/apps/docs/content/docs/core/troubleshooting.mdx @@ -439,7 +439,7 @@ docker service rm dokploy-redis --name dokploy-redis \ --constraint 'node.role==manager' \ --network dokploy-network \ - --mount type=volume,source=redis-data-volume,target=/data \ + --mount type=volume,source=dokploy-redis,target=/data \ redis:7 ``` @@ -456,7 +456,7 @@ docker service rm dokploy-postgres --env POSTGRES_USER=dokploy \ --env POSTGRES_DB=dokploy \ --env POSTGRES_PASSWORD=amukds4wi9001583845717ad2 \ - --mount type=volume,source=dokploy-postgres-database,target=/var/lib/postgresql/data \ + --mount type=volume,source=dokploy-postgres,target=/var/lib/postgresql/data \ postgres:16 ``` @@ -518,7 +518,7 @@ 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 \ - --mount type=volume,source=dokploy-docker-config,target=/root/.docker \ + --mount type=volume,source=dokploy,target=/root/.docker \ --publish published=3000,target=3000,mode=host \ --update-parallelism 1 \ --update-order stop-first \ diff --git a/apps/website/public/canary.sh b/apps/website/public/canary.sh index 7e1e776..2f48dd4 100644 --- a/apps/website/public/canary.sh +++ b/apps/website/public/canary.sh @@ -123,14 +123,14 @@ install_dokploy() { --env POSTGRES_USER=dokploy \ --env POSTGRES_DB=dokploy \ --env POSTGRES_PASSWORD=amukds4wi9001583845717ad2 \ - --mount type=volume,source=dokploy-postgres-database,target=/var/lib/postgresql/data \ + --mount type=volume,source=dokploy-postgres,target=/var/lib/postgresql/data \ postgres:16 docker service create \ --name dokploy-redis \ --constraint 'node.role==manager' \ --network dokploy-network \ - --mount type=volume,source=redis-data-volume,target=/data \ + --mount type=volume,source=dokploy-redis,target=/data \ redis:7 # Installation @@ -140,7 +140,7 @@ install_dokploy() { --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 \ - --mount type=volume,source=dokploy-docker-config,target=/root/.docker \ + --mount type=volume,source=dokploy,target=/root/.docker \ --publish published=3000,target=3000,mode=host \ --update-parallelism 1 \ --update-order stop-first \ diff --git a/apps/website/public/feature.sh b/apps/website/public/feature.sh index 112cb5e..55b01f1 100644 --- a/apps/website/public/feature.sh +++ b/apps/website/public/feature.sh @@ -123,7 +123,7 @@ install_dokploy() { --env POSTGRES_USER=dokploy \ --env POSTGRES_DB=dokploy \ --env POSTGRES_PASSWORD=amukds4wi9001583845717ad2 \ - --mount type=volume,source=dokploy-postgres-database,target=/var/lib/postgresql/data \ + --mount type=volume,source=dokploy-postgres,target=/var/lib/postgresql/data \ postgres:16 @@ -131,7 +131,7 @@ install_dokploy() { --name dokploy-redis \ --constraint 'node.role==manager' \ --network dokploy-network \ - --mount type=volume,source=redis-data-volume,target=/data \ + --mount type=volume,source=dokploy-redis,target=/data \ redis:7 @@ -142,7 +142,7 @@ install_dokploy() { --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 \ - --mount type=volume,source=dokploy-docker-config,target=/root/.docker \ + --mount type=volume,source=dokploy,target=/root/.docker \ --publish published=3000,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 0792fde..dc6f61d 100644 --- a/apps/website/public/install.sh +++ b/apps/website/public/install.sh @@ -152,14 +152,14 @@ install_dokploy() { --env POSTGRES_USER=dokploy \ --env POSTGRES_DB=dokploy \ --env POSTGRES_PASSWORD=amukds4wi9001583845717ad2 \ - --mount type=volume,source=dokploy-postgres-database,target=/var/lib/postgresql/data \ + --mount type=volume,source=dokploy-postgres,target=/var/lib/postgresql/data \ postgres:16 docker service create \ --name dokploy-redis \ --constraint 'node.role==manager' \ --network dokploy-network \ - --mount type=volume,source=redis-data-volume,target=/data \ + --mount type=volume,source=dokploy-redis,target=/data \ redis:7 # Installation @@ -169,7 +169,7 @@ install_dokploy() { --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 \ - --mount type=volume,source=dokploy-docker-config,target=/root/.docker \ + --mount type=volume,source=dokploy,target=/root/.docker \ --publish published=3000,target=3000,mode=host \ --update-parallelism 1 \ --update-order stop-first \