From ce4d4a13dd43e38f4ce98a62e9c10a13ae472133 Mon Sep 17 00:00:00 2001 From: TiynGER Date: Sat, 31 Oct 2020 18:20:09 +0100 Subject: [PATCH] bind: fixed indentation for rebuild --- wiki/bind.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/wiki/bind.md b/wiki/bind.md index f33f434..5ffd60d 100644 --- a/wiki/bind.md +++ b/wiki/bind.md @@ -34,17 +34,17 @@ There are some special variables to set. #### Rebuild -``` +```shell #!/bin/sh docker stop bind docker rm bind docker pull ventz/bind:latest docker run --name bind \ - --restart unless-stopped \ - --dns=1.1.1.1 --dns=8.8.8.8 \ - -p 53:53/udp \ - -p 53:53 \ - -v bind_cache:/var/cache/bind \ - -v bind_etc:/etc/bind \ - -d ventz/bind:latest + --restart unless-stopped \ + --dns=1.1.1.1 --dns=8.8.8.8 \ + -p 53:53/udp \ + -p 53:53 \ + -v bind_cache:/var/cache/bind \ + -v bind_etc:/etc/bind \ + -d ventz/bind:latest ```