Skip to content

Commit 74ece2c

Browse files
committed
Remove manual Docker deployment sections from guides
CashPilot handles all Docker deployments via the web UI. Manual docker run examples don't belong in user-facing service guides.
1 parent 035a11a commit 74ece2c

2 files changed

Lines changed: 0 additions & 35 deletions

File tree

docs/guides/anyone-protocol.md

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -61,25 +61,6 @@ AgreeToTerms 1
6161

6262
In the CashPilot web UI, find **Anyone Protocol** in the service catalog and click **Deploy**. CashPilot will handle the anonrc creation and volume setup.
6363

64-
### Manual Docker deployment
65-
66-
If deploying manually, mount three volumes and ensure correct permissions:
67-
68-
```bash
69-
mkdir -p /path/to/anyone-protocol/{config,data,run}
70-
# Write your anonrc to /path/to/anyone-protocol/config/anonrc
71-
chown -R 100:101 /path/to/anyone-protocol/{config,data,run}
72-
73-
docker run -d --name anyone-relay --restart unless-stopped --init \
74-
-p 9001:9001 \
75-
-v /path/to/anyone-protocol/data:/var/lib/anon \
76-
-v /path/to/anyone-protocol/config:/etc/anon \
77-
-v /path/to/anyone-protocol/run:/run/anon \
78-
ghcr.io/anyone-protocol/ator-protocol:latest
79-
```
80-
81-
**Note:** The config directory must be writable by UID 100 (anond) for `notices.log`. Port 9001 must be forwarded through your router.
82-
8364
## Docker Configuration
8465

8566
- **Image:** `ghcr.io/anyone-protocol/ator-protocol`

docs/guides/storj.md

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -70,22 +70,6 @@ Forward these ports through your router to the server running the node:
7070

7171
In the CashPilot web UI, find **Storj** in the service catalog and click **Deploy**. Enter the required credentials and CashPilot will handle the rest.
7272

73-
### Manual Docker deployment
74-
75-
```bash
76-
docker run -d --name storj-node --restart unless-stopped \
77-
-p 28967:28967/tcp -p 28967:28967/udp -p 14002:14002 \
78-
-e WALLET="0xYourWalletAddress" \
79-
-e EMAIL="your@email.com" \
80-
-e ADDRESS="your.ddns.net:28967" \
81-
-e STORAGE="2TB" \
82-
-v /path/to/identity/storagenode:/app/identity \
83-
-v /path/to/storage:/app/config \
84-
storj/storagenode
85-
```
86-
87-
**Important**: Use spinning disks (HDD) for storage, not SSDs. Storj earnings are based on stored data volume, and HDDs offer much better $/TB. SSDs provide no advantage since Storj traffic is not IOPS-intensive.
88-
8973
## Docker Configuration
9074

9175
- **Image:** `storj/storagenode`

0 commit comments

Comments
 (0)