From 1b8979705268de8536e3045cea17730eb94c6450 Mon Sep 17 00:00:00 2001 From: Bobban Date: Tue, 14 Mar 2023 00:04:33 +0100 Subject: [PATCH] Added docker-compose and markdown --- Apps/Docker/Docker-Compose.md | 14 +++++++++++++ Markdown.md | 38 +++++++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 Apps/Docker/Docker-Compose.md create mode 100644 Markdown.md diff --git a/Apps/Docker/Docker-Compose.md b/Apps/Docker/Docker-Compose.md new file mode 100644 index 0000000..5c5d7c4 --- /dev/null +++ b/Apps/Docker/Docker-Compose.md @@ -0,0 +1,14 @@ + + +## Configuration flags + +Restart: + + +| Value | Description | +|-------|----------| +| no | No restart | +| on-failure[:max-retries] | Will restart x times on failure | +| always | Always restart | +| unless-stopped | Enless admin stopped the countainer it will restart. | + diff --git a/Markdown.md b/Markdown.md new file mode 100644 index 0000000..3f417c5 --- /dev/null +++ b/Markdown.md @@ -0,0 +1,38 @@ + +## Basic text +``` Markdown +# Headline 1 +## Headline 2 +### Headline 3 + +**Bold text** +*Italic text* +***Bold and Italic*** +**Bold with _Italic_ text in the middle** +~~Strickethrough~~ +``` + +# Headline 1 +## Headline 2 +### Headline 3 + +**Bold text** +*Italic text* +***Bold and Italic*** +**Bold with _Italic_ text in the middle** +~~Strickethrough~~ + +___ +## Table + +``` markdown +| First Header | Second Header | +| ------------- | ------------- | +| Content Cell | Content Cell | +| Content Cell | Content Cell | +``` + +| First Header | Second Header | +| ------------- | ------------- | +| Content Cell | Content Cell | +| Content Cell | Content Cell |