Browse Source

bind: fixed indentation for rebuild

master
TiynGER 1 month ago
parent
commit
ce4d4a13dd
1 changed files with 8 additions and 8 deletions
  1. +8
    -8
      wiki/bind.md

+ 8
- 8
wiki/bind.md

@ -34,17 +34,17 @@ There are some special variables to set.
#### Rebuild #### Rebuild
```
```shell
#!/bin/sh #!/bin/sh
docker stop bind docker stop bind
docker rm bind docker rm bind
docker pull ventz/bind:latest docker pull ventz/bind:latest
docker run --name bind \ 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
``` ```

Loading…
Cancel
Save