docs: add main install page

This commit is contained in:
2025-04-11 12:59:06 -07:00
parent d564f064d6
commit 55d5cae85f
3 changed files with 67 additions and 1 deletions

View File

@@ -0,0 +1,40 @@
---
title: Install
tags:
- install
---
# Installing TVApp2
To install TVApp2 using docker; you will need to use either the `🗔 docker run` command, or create a `📄 docker-compose.yml` file which contains information about how to pull the latest image and spin the container up. We have provided instructions for both.
<br />
{==
Select your desired option to bring up the TVApp2 container with:
==}
<div class="grid cards" markdown>
- :material-circle: &nbsp; [docker run](docker-run.md)
---
Spin up the TVApp2 container using the `docker run` command.
This is useful for quick launches, but is not time efficient
if you plan to use this container long-term.
- :material-circle: &nbsp; [docker compose](docker-compose.md)
---
Spin up the TVApp2 container by creating a `docker-compose.yml`
file which will store all of your variables, volumes, properties,
and any labels that you may need the container to utilize.
</div>
<br />
<br />

View File

@@ -418,7 +418,28 @@
.md-typeset .tabbed-labels .md-typeset .tabbed-labels
{ {
background-color: #0d0d0d; background-color: #0b0b0b;
border-top-left-radius: 4px;
border-left: 1px solid #242735;
border-top: 1px solid #242735;
border-right: 1px solid #242735;
border-top-right-radius: 4px;
}
.tabbed-labels::before
{
background: hsla(343.1, 87.9%, 51.6%, 0.82);
bottom: 0;
content: "";
display: block;
height: 2px;
left: 0;
position: absolute;
transform: translateX(var(--md-indicator-x));
transition: width 225ms,background-color .25s,transform .25s;
transition-timing-function: ease, ease, ease;
transition-timing-function: cubic-bezier(.4,0,.2,1);
width: var(--md-indicator-width);
} }
/* /*

View File

@@ -29,6 +29,7 @@ site_url: 'https://thebinaryninja.github.io/tvapp2/'
# # # #
markdown_extensions: markdown_extensions:
- pymdownx.critic
- markdown.extensions.extra - markdown.extensions.extra
- toc: - toc:
permalink: true permalink: true
@@ -238,6 +239,10 @@ nav:
- Wiki: - Wiki:
- Conventions: 'about/conventions.md' - Conventions: 'about/conventions.md'
- Tags: 'about/tags.md' - Tags: 'about/tags.md'
- Install:
- Getting Started: 'install/index.md'
- docker run: 'install/docker-run.md'
- docker compose: 'install/docker-compose.md'
- Config: - Config:
- Environment Variables: 'config/env.md' - Environment Variables: 'config/env.md'
- Volumes: 'config/volumes.md' - Volumes: 'config/volumes.md'