complete all stack READMEs to the 9-section template

Existing content preserved and reordered to the canonical section order;
missing sections generated from each stack's compose data (ports, volumes,
env vars, image links). Fixes copy-paste errors in Dockhand sections
(qbittorrent pointed at archivebox; invokeai/thunderbird said SERVICENAME)
and persistant->persistent typos in gatus.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
code
2026-07-16 06:25:05 +00:00
co-authored by Claude Fable 5
parent 8ab413804a
commit 340866f9f4
48 changed files with 2024 additions and 140 deletions
+34 -6
View File
@@ -10,6 +10,12 @@ VS Code
- **Container Image:** [Docker Hub](https://hub.docker.com/r/linuxserver/code-server)
- **Reverse Proxy Port:** `8443`
## Getting Started
1. Start the container: `docker compose up -d`
2. Open http://localhost:8443 in your browser
3. Follow the initial setup wizard to configure the application
## Environment Variable Notes
Data directory:
@@ -19,7 +25,29 @@ Data directory:
This is where all your code is stored, it should be set to your 1000 user. Then you can move your code here as that user.
Config Directory:
This is your home directory, your ssh keys are stored here.
This is your home directory, your ssh keys are stored here.
## Volume Notes
/data host path /data/projects
/config host path /data/vscode/config
## Network Notes
Requires proxy network
## Docker Run
```bash
docker run -d \
--name vscode \
-p 8443:8443 \
-v /data/projects:/data \
-v /data/vscode/config:/config \
lscr.io/linuxserver/code-server:latest
```
See compose.yaml for the full set of environment variables.
## Additional Notes / Gotchas
@@ -41,10 +69,6 @@ ssh-keygen -t ed25519 -C "c@nickyeoman.com"
cat ~/.ssh/id_ed25519.pub
```
## Nginx Proxy manager
If you are placing this behind NPM then you need to enable web sockets.
## Dockhand Stack, Deploy from Git
Cookbooks Repository
@@ -54,4 +78,8 @@ Additional env file (optional): vscode/sample.env
Then "Load" vscode/sample.env into the Environmental variables in dockhand
Create the Stack
Create the Stack
## Nginx Proxy manager
If you are placing this behind NPM then you need to enable web sockets.