From 803642f1af6138a09e8e10243c8168a5b751fc25 Mon Sep 17 00:00:00 2001 From: Baptiste Bouchereau Date: Wed, 4 Mar 2020 15:04:10 +0100 Subject: [PATCH] Add links to blog posts --- README.md | 4 +++- localstack-part-3/README.md | 2 ++ traefik/README.md | 18 ++++++++++++++++++ 3 files changed, 23 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 91c9354..35e35c9 100644 --- a/README.md +++ b/README.md @@ -8,4 +8,6 @@ The code from some of [my blog](https://baptiste.bouchereau.pro/) posts. - [Debug PHP applications running on docker with vscode](docker-vscode-php-xdebug) - [Backup docker volumes with borg](docker-volume-borg-backup) - [A guide to localstack (part 1) - How to mock Amazon web services in local](localstack-part-1) -- [A guide to localstack (part 2) - deploying resources with Terraform](localstack-part-2) +- [A guide to localstack (part 2) - Deploying resources with Terraform](localstack-part-2) +- [A guide to localstack (part 3) - Automatic provisioning](localstack-part-3) +- [Configuration differences between traefik v2 and traefik v1 (with the docker provider)](traefik) diff --git a/localstack-part-3/README.md b/localstack-part-3/README.md index 9f3db60..d975f5a 100644 --- a/localstack-part-3/README.md +++ b/localstack-part-3/README.md @@ -1,6 +1,8 @@ Deploy AWS resources in localstack with Terraform ================================================= +[Detailed tutorial here.](https://baptiste.bouchereau.pro/tutorial/automatic-provisioning-of-localstack/) + An example on how to use docker events to automatically deploy localstack resources that mock AWS services. The following instructions focus on how to deploy: * a dynamodb table * a lambda reading data and putting data to this table diff --git a/traefik/README.md b/traefik/README.md index cc1530f..49c365d 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -1,11 +1,29 @@ Traefik v1.7 vs v2.1 configurations =================================== +[Detailed tutorial here.](https://baptiste.bouchereau.pro/tutorial/configuration-differences-between-traefik-v1-and-v2-with-the-docker-provider/) + Some traefik configurations to see differences between v1.7 and v2.1 Usage ----- ```bash +# v1 docker-compose -f traefik-v1.7-dashboard-https.yml up +docker-compose -f traefik-v1.7-dashboard-with-basic-auth.yml up +docker-compose -f traefik-v1.7-dashboard.yml up +docker-compose -f traefik-v1.7-letsencrypt.yml up +docker-compose -f traefik-v1.7-nginx-backend-https.yml up +docker-compose -f traefik-v1.7-nginx-backend.yml up +docker-compose -f traefik-v1.7-swarm-mode.yml up + +# v2 +docker-compose -f traefik-v2.1-dashboard-https.yml up +docker-compose -f traefik-v2.1-dashboard-with-basic-auth.yml up +docker-compose -f traefik-v2.1-dashboard.yml up +docker-compose -f traefik-v2.1-letsencrypt.yml up +docker-compose -f traefik-v2.1-nginx-backend-https.yml up +docker-compose -f traefik-v2.1-nginx-backend.yml up +docker-compose -f traefik-v2.1-swarm-mode.yml up ```