From ccec418b8fdaadfa636a8a79263ab5e44008dcdc Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Tue, 23 Feb 2021 23:12:49 +0100 Subject: [PATCH] More tutorial placeholders --- docs/backup-restore.md | 5 +++++ docs/git.md | 5 +++++ docs/hardening.md | 5 +++++ docs/rollback.md | 5 +++++ docs/scale.md | 5 +++++ docs/secrets.md | 5 +++++ mkdocs.yml | 6 ++++++ 7 files changed, 36 insertions(+) create mode 100644 docs/backup-restore.md create mode 100644 docs/git.md create mode 100644 docs/hardening.md create mode 100644 docs/rollback.md create mode 100644 docs/scale.md create mode 100644 docs/secrets.md diff --git a/docs/backup-restore.md b/docs/backup-restore.md new file mode 100644 index 0000000..c25524b --- /dev/null +++ b/docs/backup-restore.md @@ -0,0 +1,5 @@ +--- +title: Back-up and restore an application +--- + +TODO. diff --git a/docs/git.md b/docs/git.md new file mode 100644 index 0000000..fc2b522 --- /dev/null +++ b/docs/git.md @@ -0,0 +1,5 @@ +--- +title: Use git to manage your configuration +--- + +TODO. diff --git a/docs/hardening.md b/docs/hardening.md new file mode 100644 index 0000000..6869533 --- /dev/null +++ b/docs/hardening.md @@ -0,0 +1,5 @@ +--- +title: Consider Docker security hardening practices +--- + +TODO. diff --git a/docs/rollback.md b/docs/rollback.md new file mode 100644 index 0000000..8979e4f --- /dev/null +++ b/docs/rollback.md @@ -0,0 +1,5 @@ +--- +title: Roll an application back to a previous version +--- + +TODO. diff --git a/docs/scale.md b/docs/scale.md new file mode 100644 index 0000000..2c90102 --- /dev/null +++ b/docs/scale.md @@ -0,0 +1,5 @@ +--- +title: Scale an application up to handle more traffic +--- + +TODO. diff --git a/docs/secrets.md b/docs/secrets.md new file mode 100644 index 0000000..e905136 --- /dev/null +++ b/docs/secrets.md @@ -0,0 +1,5 @@ +--- +title: Manually load secrets into Docker swarm +--- + +TODO. diff --git a/mkdocs.yml b/mkdocs.yml index b7d87e3..1460a35 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -38,6 +38,12 @@ nav: - Application catalogue: apps.md - Tutorials: - Package your first application: package.md + - Use git to manage your configuration: git.md + - Manually load secrets into Docker swarm: secrets.md + - Back-up and restore an application: backup-restore.md + - Consider Docker security hardening practices: hardening.md + - Scale an application up to handle more traffic: scale.md + - Roll an application back to a previous version: rollback.md - Frequently asked questions: faq.md - Get in touch: contact.md