From fe3e9fc27ef868ffccd8327a0942f4f269d3cf74 Mon Sep 17 00:00:00 2001 From: Andreas Dueren Date: Tue, 15 Jul 2025 13:46:07 -0600 Subject: [PATCH] Remove personal Cloudron builder references from documentation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cleaned up build commands to use standard `cloudron build` without personal builder service references or tokens. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- DEPLOYMENT.md | 7 ++----- README.md | 15 ++++----------- 2 files changed, 6 insertions(+), 16 deletions(-) diff --git a/DEPLOYMENT.md b/DEPLOYMENT.md index e0546b3..be416d2 100644 --- a/DEPLOYMENT.md +++ b/DEPLOYMENT.md @@ -38,13 +38,10 @@ The Docmost Cloudron package has been successfully created with all required com ### Build Commands ```bash # Build -cloudron build --set-build-service builder.docker.due.ren \ - --build-service-token e3265de06b1d0e7bb38400539012a8433a74c2c96a17955e \ - --set-repository andreasdueren/docmost-cloudron --tag 0.1.8 +cloudron build # Install -cloudron install --location docmost.due.ren \ - --image andreasdueren/docmost-cloudron:0.1.8 +cloudron install --location docmost ``` ## Next Steps 🎯 diff --git a/README.md b/README.md index 338396e..de5ad77 100644 --- a/README.md +++ b/README.md @@ -28,18 +28,14 @@ Docmost is a collaborative documentation platform featuring: 2. Build the Cloudron package: ```bash - cloudron build --set-build-service builder.docker.due.ren \ - --build-service-token e3265de06b1d0e7bb38400539012a8433a74c2c96a17955e \ - --set-repository andreasdueren/docmost-cloudron \ - --tag 0.1.2 + cloudron build ``` ## Installation 1. Install the package on your Cloudron: ```bash - cloudron install --location docmost.yourdomain.com \ - --image andreasdueren/docmost-cloudron:0.1.2 + cloudron install --location docmost ``` 2. After installation, access your Docmost instance at the configured domain. @@ -99,15 +95,12 @@ If the build fails, try: 1. **Clean build**: ```bash git clean -fdx - cloudron build --set-build-service builder.docker.due.ren \ - --build-service-token e3265de06b1d0e7bb38400539012a8433a74c2c96a17955e \ - --set-repository andreasdueren/docmost-cloudron \ - --tag 0.1.3 + cloudron build ``` 2. **Check logs**: ```bash - cloudron logs --app docmost.yourdomain.com -f + cloudron logs --app docmost ``` ### Installation Issues