fix(seedbox): update README to reflect /downloads mount point
Some checks failed
Deploy Seedbox / Deploy Seedbox Stacks (push) Failing after 3s
Some checks failed
Deploy Seedbox / Deploy Seedbox Stacks (push) Failing after 3s
- Storage section now shows /downloads (local RAID - 3.4T) - Updated directory structure - Fixed post-install verification commands
This commit is contained in:
@@ -33,7 +33,7 @@ Docker-based seedbox with Tailscale integration. Each service runs in its own co
|
|||||||
│ └─────────────────────────────────────────────────────────┘ │
|
│ └─────────────────────────────────────────────────────────┘ │
|
||||||
│ │
|
│ │
|
||||||
│ Storage: │
|
│ Storage: │
|
||||||
│ ├─ /srv/seedbox/downloads (local SSD) │
|
│ ├─ /downloads (local RAID - 3.4T) │
|
||||||
│ └─ /mnt/media (NFS from NAS) │
|
│ └─ /mnt/media (NFS from NAS) │
|
||||||
└─────────────────────────────────────────────────────────────────┘
|
└─────────────────────────────────────────────────────────────────┘
|
||||||
```
|
```
|
||||||
@@ -88,15 +88,8 @@ Add this tag to your Tailscale ACL policy (https://login.tailscale.com/admin/acl
|
|||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"tagOwners": {
|
"tagOwners": {
|
||||||
"tag:container": ["autogroup:admin"]
|
"tag:container": ["autogroup:admins"]
|
||||||
},
|
}
|
||||||
"acls": [
|
|
||||||
{
|
|
||||||
"action": "accept",
|
|
||||||
"src": ["autogroup:member"],
|
|
||||||
"dst": ["tag:container:*"]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -136,11 +129,10 @@ Or create a PR for validation first.
|
|||||||
│ └── portainer/
|
│ └── portainer/
|
||||||
│ ├── docker-compose.yml
|
│ ├── docker-compose.yml
|
||||||
│ └── serve.json
|
│ └── serve.json
|
||||||
├── downloads/ # Local downloads (SSD)
|
└── .env # Secrets (created by pipeline)
|
||||||
├── .env # Secrets (created by pipeline)
|
|
||||||
└── .gitea/
|
/downloads/ # Local RAID storage (3.4T)
|
||||||
└── workflows/
|
/mnt/media/ # NFS mount from NAS
|
||||||
└── deploy.yml # Deployment pipeline
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Adding a New Service
|
## Adding a New Service
|
||||||
@@ -185,6 +177,8 @@ services:
|
|||||||
- TZ=Europe/Paris
|
- TZ=Europe/Paris
|
||||||
volumes:
|
volumes:
|
||||||
- config:/config
|
- config:/config
|
||||||
|
- /downloads:/downloads
|
||||||
|
- /mnt/media:/media
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
@@ -340,6 +334,9 @@ Ensure your NAS exports the media share via NFS:
|
|||||||
## Post-install Verification
|
## Post-install Verification
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
# Check downloads mount
|
||||||
|
df -h /downloads
|
||||||
|
|
||||||
# Check NFS mount
|
# Check NFS mount
|
||||||
df -h /mnt/media
|
df -h /mnt/media
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user