-
Notifications
You must be signed in to change notification settings - Fork 130
/
vars
28 lines (22 loc) · 840 Bytes
/
vars
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#
# this file contains a number of global variables used
# by the docker container and its scripts. update any
# of these to be appropriate for your environment.
#
IMAGE_NAME="cturra/ntp"
CONTAINER_NAME="ntp"
# (optional) define ntp server(s) to use
# if none are provided a default is chosen
# ntp server list must: be comma delimited and NOT contain spaces
# NTP_SERVERS="time1.google.com,time2.google.com,time3.google.com,time4.google.com"
NTP_SERVERS="time.cloudflare.com"
# (optional) enable NTS in the chronyd configuration file
ENABLE_NTS=false
# (optional) turn on noclientlog option
NOCLIENTLOG=false
# (optional) define chrony log level to use
# default: 0
# options: 0 (informational), 1 (warning), 2 (non-fatal error), and 3 (fatal error)
LOG_LEVEL=0
# (optional) additional docker run options you may want
DOCKER_OPTS=""