tutorials: improve theme + use pandoc 2

This commit is contained in:
nemunaire 2018-11-16 02:38:41 +01:00
commit d25af4fdb2
65 changed files with 1283 additions and 1294 deletions

View file

@ -12,19 +12,19 @@ construction).
<div lang="en-US">
```yaml
version: '3'
services:
influxdb:
...
chronograf:
build: grafana/
image: nginx
ports:
- "3000:3000"
volumes:
- ./:/tmp/toto
links:
- influxdb
version: '3'
services:
influxdb:
...
chronograf:
build: grafana/
image: nginx
ports:
- "3000:3000"
volumes:
- ./:/tmp/toto
links:
- influxdb
```
</div>
@ -61,9 +61,9 @@ suit :
<div lang="en-US">
```yaml
volumes:
mysql-data:
driver: local
volumes:
mysql-data:
driver: local
```
</div>
@ -72,11 +72,11 @@ l'emplacement à partager :
<div lang="en-US">
```yaml
[...]
mysql:
[...]
mysql:
[...]
volumes:
- mysql-data:/var/lib/mysql
volumes:
- mysql-data:/var/lib/mysql
```
</div>
@ -94,9 +94,9 @@ qui pourront être utilisés par les `services`. On pourrait donc avoir :
<div lang="en-US">
```yaml
networks:
knotdns-slave-net:
driver: bridge
networks:
knotdns-slave-net:
driver: bridge
```
</div>
@ -145,8 +145,8 @@ Une fois le build terminé, nous pouvons lancer la commande suivante et admirer
le résultat :
<div lang="en-US">
```shell
docker-compose up
```bash
docker-compose up
```
</div>