Pull request 174: docker-ports
Squashed commit of the following: commit 982d4d7be22e5e9af18f8b6a3ed7575627245c0a Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Wed Jul 12 17:49:44 2023 +0300 Configuration: fix backticks commit de0333e00a02b6ff021203fe0ef5ffc49d117b21 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Wed Jul 12 17:31:08 2023 +0300 Docker: add pprof; rm 784, 8853 ports
parent
b168fc4bba
commit
6414132741
|
@ -773,7 +773,7 @@ Please follow these steps to create a new password for your user account:
|
|||
```yaml
|
||||
users:
|
||||
- name: ...
|
||||
password: <HASH>```
|
||||
password: <HASH>
|
||||
```
|
||||
|
||||
4. Save the file and restart AdGuard Home. Now you should be able to log in to
|
||||
|
|
10
Docker.md
10
Docker.md
|
@ -64,8 +64,9 @@ docker run --name adguardhome\
|
|||
-p 67:67/udp -p 68:68/udp\
|
||||
-p 80:80/tcp -p 443:443/tcp -p 443:443/udp -p 3000:3000/tcp\
|
||||
-p 853:853/tcp\
|
||||
-p 784:784/udp -p 853:853/udp -p 8853:8853/udp\
|
||||
-p 853:853/udp\
|
||||
-p 5443:5443/tcp -p 5443:5443/udp\
|
||||
-p 6060:6060/tcp\
|
||||
-d adguard/adguardhome
|
||||
```
|
||||
|
||||
|
@ -88,13 +89,14 @@ Port mappings you might need:
|
|||
* `-p 853:853/tcp`: add if you are going to run AdGuard Home as
|
||||
a [DNS-over-TLS][enc] server.
|
||||
|
||||
* `-p 784:784/udp -p 853:853/udp -p 8853:8853/udp`: add if you are going to
|
||||
run AdGuard Home as a [DNS-over-QUIC][enc] server. You may only leave one
|
||||
or two of these.
|
||||
* `-p 853:853/udp`: add if you are going to run AdGuard Home as a
|
||||
[DNS-over-QUIC][enc] server.
|
||||
|
||||
* `-p 5443:5443/tcp -p 5443:5443/udp`: add if you are going to run AdGuard
|
||||
Home as a [DNSCrypt] server.
|
||||
|
||||
* `-p 6060:6060/tcp`: debugging profiles.
|
||||
|
||||
### Client IPs
|
||||
|
||||
If you want AdGuardHome to see the original client IPs as opposed to something
|
||||
|
|
Loading…
Reference in New Issue