Skip to content

Commit abe4dcd

Browse files
committed
refactor(ddns): upgrade ddns-updater configuration
1 parent e58b467 commit abe4dcd

File tree

2 files changed

+19
-9
lines changed

2 files changed

+19
-9
lines changed

services/ddns-updater/docker-compose.yml

+17-7
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,30 @@ services:
88
container_name: ddns-updater
99
restart: always
1010
environment:
11+
# Public IP Scanner
1112
- PERIOD=5m
1213
- UPDATE_COOLDOWN_PERIOD=5m
13-
- IP_METHOD=cycle
14-
- IPV4_METHOD=cycle
15-
- IPV6_METHOD=cycle
1614
- HTTP_TIMEOUT=10s
17-
- LISTENING_PORT=8080
15+
- PUBLICIP_FETCHERS=all
16+
- PUBLICIP_HTTP_PROVIDERS=all
17+
- PUBLICIPV4_HTTP_PROVIDERS=all
18+
- PUBLICIPV6_HTTP_PROVIDERS=all
19+
- PUBLICIP_DNS_PROVIDERS=all
20+
- PUBLICIP_DNS_TIMEOUT=3s
21+
# Web UI
22+
- LISTENING_ADDRESS=:8080
1823
- ROOT_URL=/
24+
# Data
25+
- DATADIR=/updater/data
26+
# Backup
1927
- BACKUP_PERIOD=0
2028
- BACKUP_DIRECTORY=/updater/data
21-
- LOG_ENCODING=console
29+
# Logger
2230
- LOG_LEVEL=info
23-
- GOTIFY_URL=${GOTIFY_ENDPOINT}
24-
- GOTIFY_TOKEN=${GOTIFY_TOKEN}
31+
- LOG_CALLER=hidden
32+
# Notifications
33+
- SHOUTRRR_ADDRESSES=gotify://${GOTIFY_ENDPOINT}/${GOTIFY_TOKEN}
34+
# Timezone
2535
- TZ=${TZ}
2636
volumes:
2737
- ./data:/updater/data

services/moodle/docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: "3.7"
33
services:
44
### Moodle database: MariaDB ###
55
moodle-mariadb:
6-
image: mariadb
6+
image: mariadb:10.10
77
container_name: moodle-mariadb
88
restart: always
99
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
@@ -16,7 +16,7 @@ services:
1616
- ${VOLUME_DIR}/moodle-db:/var/lib/mysql
1717
## Moodle: A very popular open source learning management solution (LMS) for the delivery of elearning courses and programs. ##
1818
moodle:
19-
image: bitnami/moodle
19+
image: bitnami/moodle:4.3.0
2020
container_name: moodle
2121
restart: always
2222
depends_on:

0 commit comments

Comments
 (0)