Back to third-party DNS servers

This commit is contained in:
WilliamMiceli
2018-07-10 17:30:15 -04:00
parent db64d8e65d
commit 13926c3f4f
3 changed files with 14 additions and 7 deletions

View File

@@ -3,7 +3,8 @@ services:
bind:
image: sameersbn/bind
dns:
- localhost
- 1.1.1.1
- 1.0.0.1
environment:
WEBMIN_ENABLED: ${WEBMIN_ENABLED}
{{- if eq .Values.WEBMIN_ENABLED "true"}}

View File

@@ -3,7 +3,8 @@ services:
app:
image: invoiceninja/invoiceninja
dns:
- 10.0.0.1
- 1.1.1.1
- 1.0.0.1
environment:
APP_ENV: production
APP_DEBUG: false
@@ -35,7 +36,8 @@ services:
cron:
image: invoiceninja/invoiceninja
dns:
- 10.0.0.1
- 1.1.1.1
- 1.0.0.1
entrypoint: |
bash -c 'bash -s <<EOF
trap "break;exit" SIGHUP SIGINT SIGTERM
@@ -75,7 +77,8 @@ services:
db:
image: mysql:5
dns:
- 10.0.0.1
- 1.1.1.1
- 1.0.0.1
environment:
MYSQL_DATABASE: ninja_db
MYSQL_ROOT_PASSWORD: ${DB_ROOT_PASS}
@@ -91,7 +94,8 @@ services:
web:
image: nginx
dns:
- 10.0.0.1
- 1.1.1.1
- 1.0.0.1
labels:
{{- if (.Values.HOST_LABEL)}}
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}

View File

@@ -6,7 +6,8 @@ services:
depends_on:
- mysql
dns:
- 10.0.0.1
- 1.1.1.1
- 1.0.0.1
environment:
MYSQL_HOST: mysql
MYSQL_DATABASE: nextcloud
@@ -31,7 +32,8 @@ services:
mysql:
image: mysql:5
dns:
- 10.0.0.1
- 1.1.1.1
- 1.0.0.1
environment:
MYSQL_DATABASE: nextcloud
MYSQL_ROOT_PASSWORD: ${DB_ROOT_PASS}