File tree 2 files changed +19
-9
lines changed
2 files changed +19
-9
lines changed Original file line number Diff line number Diff line change @@ -8,20 +8,30 @@ services:
8
8
container_name : ddns-updater
9
9
restart : always
10
10
environment :
11
+ # Public IP Scanner
11
12
- PERIOD=5m
12
13
- UPDATE_COOLDOWN_PERIOD=5m
13
- - IP_METHOD=cycle
14
- - IPV4_METHOD=cycle
15
- - IPV6_METHOD=cycle
16
14
- 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
18
23
- ROOT_URL=/
24
+ # Data
25
+ - DATADIR=/updater/data
26
+ # Backup
19
27
- BACKUP_PERIOD=0
20
28
- BACKUP_DIRECTORY=/updater/data
21
- - LOG_ENCODING=console
29
+ # Logger
22
30
- 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
25
35
- TZ=${TZ}
26
36
volumes :
27
37
- ./data:/updater/data
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ version: "3.7"
3
3
services :
4
4
# ## Moodle database: MariaDB ###
5
5
moodle-mariadb :
6
- image : mariadb
6
+ image : mariadb:10.10
7
7
container_name : moodle-mariadb
8
8
restart : always
9
9
command : --transaction-isolation=READ-COMMITTED --binlog-format=ROW
@@ -16,7 +16,7 @@ services:
16
16
- ${VOLUME_DIR}/moodle-db:/var/lib/mysql
17
17
# # Moodle: A very popular open source learning management solution (LMS) for the delivery of elearning courses and programs. ##
18
18
moodle :
19
- image : bitnami/moodle
19
+ image : bitnami/moodle:4.3.0
20
20
container_name : moodle
21
21
restart : always
22
22
depends_on :
You can’t perform that action at this time.
0 commit comments