Add links to blog posts

master
Baptiste Bouchereau 2020-03-04 15:04:10 +01:00
rodzic d4c1456e1d
commit 803642f1af
3 zmienionych plików z 23 dodań i 1 usunięć

Wyświetl plik

@ -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)

Wyświetl plik

@ -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

Wyświetl plik

@ -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
```