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 |