CTRoadmap
Homelab Server Network Diagram & Documentation for Mapping Function Topology
File Explorer
- CTRlogo1.png
- DATA.png
- FLOW.png
- PlanMode.png
- Stack.png
- __init__.py
- config.py
- debug.py
- exports.py
- main.py
- models.py
- storage.py
- version.py
- __init__.py
- test_public_fork.py
- requirements.txt
- .gitkeep
- .gitkeep
- ctroadmap-topbar-logo.png
- index.ts
- preferences.test.ts
- preferences.ts
- registry.ts
- resolvers.test.ts
- resolvers.ts
- types.ts
- useAppearancePreferences.ts
- AvoidTilesEdge.tsx
- CanvasFrame.tsx
- CanvasStylePreview.tsx
- CanvasThemeEditor.tsx
- ExportMenu.tsx
- FamilyNode.tsx
- Inspector.tsx
- LayerBar.tsx
- LeftSidebar.tsx
- SearchBox.tsx
- SettingsPanel.tsx
- TileNode.tsx
- TopBar.tsx
- api.ts
- atlasMutations.ts
- atlasSelectors.ts
- constants.ts
- debug.ts
- edgeRouting.ts
- graphMapping.ts
- validation.ts
- atlas.ts
- App.tsx
- main.tsx
- styles.css
- vite-env.d.ts
- public-fork.spec.ts
- index.html
- package-lock.json
- package.json
- playwright.config.ts
- tsconfig.json
- vite.config.ts
- vitest.config.ts
- CTRoadmap_BUILD_SPEC.md
- .dockerignore
- .gitignore
- CTR_install.sh
- CTR_uninstall.sh
- CTRBETA_release-compose.yml
- docker-compose.yml
- Dockerfile
- latest.json
- LICENSE
- README.md
- readmebanner.png
- readmebanner4.png
- ReadmeBanner6.png
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
docker compose down
View Details ▼
docker compose down
Stop and remove containers, networks, images, and volumes created by `docker compose up`.
docker compose down
Stop and remove all containers and networks:
docker compose down --rmi all
Stop and remove containers, networks, and all images used by services:
docker compose down --rmi local
Stop and remove containers, networks, and only images without a custom tag:
docker compose logs
View Details ▼
docker compose logs
View output from containers in a Docker Compose application.
docker compose logs
View logs for all services:
docker compose logs {{service_name}}
View logs for a specific service:
docker compose logs {{[-f|--follow]}}
View logs and follow new output (like `tail --follow`):
docker compose up
View Details ▼
docker compose up
Start and run Docker services defined in a Compose file.
docker compose up
Start all services defined in the docker-compose file:
docker compose up {{[-d|--detach]}}
Start services in the background (detached mode):
docker compose up --build
Start services and rebuild images before starting:
docker compose
View Details ▼
docker compose
Run and manage multi container Docker applications.
docker compose ps
List all running containers:
docker compose up {{[-d|--detach]}}
Create and start all containers in the background using a `docker-compose.yml` file from the current directory:
docker compose up --build
Start all containers, rebuild if necessary:
