Skip to content

Markdown Examples Used Throughout Site

Copy and Paste These As Needed

For full documentation visit mkdocs.org.

Heading One

Warning:       Page Under Development

This page is still under development and may not have accurate information, and should be considered incomplete / inaccurate until this notice is removed.

Basic intro to Docker... embed Docker intro video etc..

Provide steps to install Docker on Windows, Linux, MacOS, Synology NAS and other hosts where possible

Heading Two

Heading Three


Commands

  • mkdocs new [dir-name] - Create a new project.
  • mkdocs serve - Start the live-reloading docs server.
  • mkdocs build - Build the documentation site.
  • mkdocs -h - Print help message and exit.

Third Heading

This is the third heading.

Fourth Heading

This is the fourth heading.

Fifth Heading

This is the fifth heading.

Project layout

Text Only
mkdocs.yml    # The configuration file.
docs/
    index.md  # The documentation homepage.
    ...       # Other markdown pages, images and other files.
graph TB
    c1-->a2
    subgraph Download Clients
    a1-->a2
    end
    subgraph two
    b1-->b2
    end
    subgraph three
    c1-->c2
    end
flowchart LR
    subgraph Download Clients
    SABnzbd-->VPN
    qBittorrent-->VPN
    end
    subgraph Internet
    VPN-->gateway[VPN Gateway]
    end

This is a note code fence

Select something below:

FOLDER_FOR_CONFIGS
FOLDER_FOR_MEDIA

Bash
export FOLDER_FOR_CONFIGS=/home/geekau/docker
export FOLDER_FOR_MEDIA=/home/geekau/media-stack

sudo -E mkdir -p $FOLDER_FOR_CONFIGS/{authelia,bazarr,ddns-updater,gluetun,heimdall,jellyfin,jellyseerr,lidarr,mylar3,portainer,prowlarr,qbittorrent,radarr,readarr,sabnzbd,sonarr,swag,tdarr,tdarr_transcode_cache,unpackerr,whisparr}
sudo -E mkdir -p $FOLDER_FOR_MEDIA/media/{adult,anime,audio,books,comics,movies,music,photos,podcasts,series,software}
sudo -E mkdir -p $FOLDER_FOR_MEDIA/usenet/{adult,anime,audio,books,comics,movies,music,prowlarr,podcasts,series,software}
sudo -E mkdir -p $FOLDER_FOR_MEDIA/torrents/{adult,anime,audio,books,comics,movies,music,prowlarr,podcasts,series,software}
sudo -E mkdir -p $FOLDER_FOR_MEDIA/watch
sudo -E chmod -R 775 $FOLDER_FOR_CONFIGS $FOLDER_FOR_MEDIA
sudo -E chown -R geekau:geekau $FOLDER_FOR_CONFIGS $FOLDER_FOR_MEDIA
PowerShell
set FOLDER_FOR_CONFIGS=D:\Storage\Docker
set FOLDER_FOR_MEDIA=D:\Storage\Media-Stack

FOR /D %I IN (authelia bazarr ddns-updater gluetun heimdall jellyfin jellyseerr lidarr mylar3 portainer prowlarr qbittorrent radarr readarr sabnzbd sonarr swag tdarr tdarr_transcode_cache unpackerr whisparr) DO mkdir %FOLDER_FOR_CONFIGS%\%I
FOR /D %I IN (adult anime audio books comics movies music photos podcasts series software) DO mkdir %FOLDER_FOR_MEDIA%\media\%I
FOR /D %I IN (adult anime audio books comics movies music podcasts prowlarr series software) DO mkdir %FOLDER_FOR_MEDIA%\usenet\%I
FOR /D %I IN (adult anime audio books comics movies music podcasts prowlarr series software) DO mkdir %FOLDER_FOR_MEDIA%\torrents\%I
mkdir %FOLDER_FOR_MEDIA%\watch
Bash
Waiting Testing
Bash
Synology - ADD HERE

Danger

C
#include <stdio.h>

int main(void) {
printf("Hello world!\n");
return 0;
}
C++
#include <iostream>

int main(void) {
std::cout << "Hello world!" << std::endl;
return 0;
}

Image title

Ctrl+Alt+Del

Ctrl+Shift+D

Image title

Image caption

Note

This is a Note field... copy this example


Abstract

This is an Abstract field... copy this example


Info

This is an Info field... copy this example

Bash
This is linux code
PowerShell
This is linux code
Text Only
This is linux code

Tip

This is a Tip field... copy this example


Success

This is a Success field... copy this example


Question

This is a Question field... copy this example


Warning

This is a Warning field... copy this example


Failure

This is a Failure field... copy this example


Danger

This is a Danger field... copy this example


Bug

This is a Bug field... copy this example


Example

This is an Example field... copy this example


Quote

This is a Quote field... copy this example



Last update: March 1, 2023