repo.or.cz
/
dockerfiles.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update README.md
[dockerfiles.git]
/
unbound
/
README.md
blob
84d3f825b79aead38fd64d2c444a81dbb78c317a
1
# Unbound DNS Server
2
3
### start
4
5
docker build -t unbound .
6
docker run -d -p 53:53/udp -P --name test_unbound unbound
7
docker run -p 127.0.0.1:53:53 -d -P --name test_opensmtpd opensmtpd
8
9
### shutdown
10
11
docker stop test_unbound
12
docker rm test_unbound
13
docker rmi unbound