diff --git a/apps/website/public/canary.sh b/apps/website/public/canary.sh index ba832736..3a9102b0 100644 --- a/apps/website/public/canary.sh +++ b/apps/website/public/canary.sh @@ -81,6 +81,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 \ --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 50955cc2..453da012 100644 --- a/apps/website/public/feature.sh +++ b/apps/website/public/feature.sh @@ -65,6 +65,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 \ --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 8dc80620..e68a59fd 100644 --- a/apps/website/public/install.sh +++ b/apps/website/public/install.sh @@ -81,6 +81,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 \ --publish published=3000,target=3000,mode=host \ --update-parallelism 1 \ --update-order stop-first \