mirror of
https://github.com/Mailu/Mailu.git
synced 2025-02-01 12:57:49 +02:00
Adding unbound as dns resolver
This commit is contained in:
parent
31b887807a
commit
d0f759acca
14
core/unbound/Dockerfile
Normal file
14
core/unbound/Dockerfile
Normal file
@ -0,0 +1,14 @@
|
||||
FROM alpine:edge
|
||||
|
||||
RUN apk add --no-cache unbound curl \
|
||||
&& curl -o /etc/unbound/root.hints https://www.internic.net/domain/named.cache \
|
||||
&& chown root:unbound /etc/unbound \
|
||||
&& chmod 775 /etc/unbound \
|
||||
&& apk del --no-cache curl \
|
||||
&& /usr/sbin/unbound-anchor -a /etc/unbound/trusted-key.key | true
|
||||
|
||||
COPY unbound.conf /etc/unbound/unbound.conf
|
||||
|
||||
EXPOSE 53/udp 53/tcp
|
||||
|
||||
CMD /usr/sbin/unbound
|
19
core/unbound/unbound.conf
Normal file
19
core/unbound/unbound.conf
Normal file
@ -0,0 +1,19 @@
|
||||
server:
|
||||
verbosity: 1
|
||||
interface: 0.0.0.0
|
||||
interface: ::0
|
||||
logfile: /dev/stdout
|
||||
do-ip4: yes
|
||||
do-ip6: yes
|
||||
do-udp: yes
|
||||
do-tcp: yes
|
||||
do-daemonize: no
|
||||
access-control: 0.0.0.0/0 allow
|
||||
directory: "/etc/unbound"
|
||||
username: unbound
|
||||
auto-trust-anchor-file: trusted-key.key
|
||||
root-hints: "/etc/unbound/root.hints"
|
||||
hide-identity: yes
|
||||
hide-version: yes
|
||||
max-udp-size: 4096
|
||||
msg-buffer-size: 65552
|
@ -21,6 +21,9 @@ SECRET_KEY=ChangeMeChangeMe
|
||||
BIND_ADDRESS4=127.0.0.1
|
||||
BIND_ADDRESS6=::1
|
||||
|
||||
# Internal Docker network
|
||||
IPV4_NETWORK=172.22.1
|
||||
|
||||
# Main mail domain
|
||||
DOMAIN=mailu.io
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
version: '2'
|
||||
version: '2.1'
|
||||
|
||||
services:
|
||||
|
||||
@ -27,12 +27,37 @@ services:
|
||||
- "$BIND_ADDRESS6:587:587"
|
||||
volumes:
|
||||
- "$ROOT/certs:/certs"
|
||||
depends_on:
|
||||
- unbound
|
||||
dns:
|
||||
- ${IPV4_NETWORK:-172.22.1}.254
|
||||
networks:
|
||||
backend:
|
||||
aliases:
|
||||
- front
|
||||
|
||||
unbound:
|
||||
image: mailu/unbound:$VERSION
|
||||
restart: always
|
||||
networks:
|
||||
backend:
|
||||
ipv4_address: ${IPV4_NETWORK:-172.22.1}.254
|
||||
aliases:
|
||||
- unbound
|
||||
|
||||
redis:
|
||||
image: redis:alpine
|
||||
restart: always
|
||||
volumes:
|
||||
- "$ROOT/redis:/data"
|
||||
dns:
|
||||
- ${IPV4_NETWORK:-172.22.1}.254
|
||||
depends_on:
|
||||
- unbound
|
||||
networks:
|
||||
backend:
|
||||
aliases:
|
||||
- redis
|
||||
|
||||
imap:
|
||||
image: mailu/dovecot:$VERSION
|
||||
@ -44,6 +69,13 @@ services:
|
||||
- "$ROOT/overrides:/overrides"
|
||||
depends_on:
|
||||
- front
|
||||
- unbound
|
||||
dns:
|
||||
- ${IPV4_NETWORK:-172.22.1}.254
|
||||
networks:
|
||||
backend:
|
||||
aliases:
|
||||
- imap
|
||||
|
||||
smtp:
|
||||
image: mailu/postfix:$VERSION
|
||||
@ -54,6 +86,13 @@ services:
|
||||
- "$ROOT/overrides:/overrides"
|
||||
depends_on:
|
||||
- front
|
||||
- unbound
|
||||
dns:
|
||||
- ${IPV4_NETWORK:-172.22.1}.254
|
||||
networks:
|
||||
backend:
|
||||
aliases:
|
||||
- smtp
|
||||
|
||||
antispam:
|
||||
image: mailu/rspamd:$VERSION
|
||||
@ -65,6 +104,13 @@ services:
|
||||
- "$ROOT/overrides/rspamd:/etc/rspamd/override.d"
|
||||
depends_on:
|
||||
- front
|
||||
- unbound
|
||||
dns:
|
||||
- ${IPV4_NETWORK:-172.22.1}.254
|
||||
networks:
|
||||
backend:
|
||||
aliases:
|
||||
- antispam
|
||||
|
||||
antivirus:
|
||||
image: mailu/$ANTIVIRUS:$VERSION
|
||||
@ -72,6 +118,14 @@ services:
|
||||
env_file: .env
|
||||
volumes:
|
||||
- "$ROOT/filter:/data"
|
||||
depends_on:
|
||||
- unbound
|
||||
dns:
|
||||
- ${IPV4_NETWORK:-172.22.1}.254
|
||||
networks:
|
||||
backend:
|
||||
aliases:
|
||||
- antivirus
|
||||
|
||||
webdav:
|
||||
image: mailu/$WEBDAV:$VERSION
|
||||
@ -79,6 +133,14 @@ services:
|
||||
env_file: .env
|
||||
volumes:
|
||||
- "$ROOT/dav:/data"
|
||||
depends_on:
|
||||
- unbound
|
||||
dns:
|
||||
- ${IPV4_NETWORK:-172.22.1}.254
|
||||
networks:
|
||||
backend:
|
||||
aliases:
|
||||
- webdav
|
||||
|
||||
admin:
|
||||
image: mailu/admin:$VERSION
|
||||
@ -90,6 +152,13 @@ services:
|
||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||
depends_on:
|
||||
- redis
|
||||
- unbound
|
||||
dns:
|
||||
- ${IPV4_NETWORK:-172.22.1}.254
|
||||
networks:
|
||||
backend:
|
||||
aliases:
|
||||
- admin
|
||||
|
||||
webmail:
|
||||
image: "mailu/$WEBMAIL:$VERSION"
|
||||
@ -99,6 +168,13 @@ services:
|
||||
- "$ROOT/webmail:/data"
|
||||
depends_on:
|
||||
- imap
|
||||
- unbound
|
||||
dns:
|
||||
- ${IPV4_NETWORK:-172.22.1}.254
|
||||
networks:
|
||||
backend:
|
||||
aliases:
|
||||
- webmail
|
||||
|
||||
fetchmail:
|
||||
image: mailu/fetchmail:$VERSION
|
||||
@ -106,3 +182,19 @@ services:
|
||||
env_file: .env
|
||||
volumes:
|
||||
- "$ROOT/data:/data"
|
||||
depends_on:
|
||||
- unbound
|
||||
dns:
|
||||
- ${IPV4_NETWORK:-172.22.1}.254
|
||||
networks:
|
||||
backend:
|
||||
aliases:
|
||||
- fetchmail
|
||||
|
||||
networks:
|
||||
backend:
|
||||
driver: bridge
|
||||
ipam:
|
||||
driver: default
|
||||
config:
|
||||
- subnet: ${IPV4_NETWORK:-172.22.1}.0/24
|
||||
|
Loading…
x
Reference in New Issue
Block a user