forked from cturra/docker-ntp
-
Notifications
You must be signed in to change notification settings - Fork 9
/
vars
33 lines (25 loc) · 929 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
29
30
31
32
33
#
# 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="simonrupf/chronyd"
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="0.pool.ntp.org,1.pool.ntp.org,2.pool.ntp.org,3.pool.ntp.org"
# (optional) enable NTS in the chronyd configuration file
ENABLE_NTS=false
# (optional) enable control of system clock
ENABLE_SYSCLK=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=""
# (optional) ask run.sh to pass /dev/ptp0
RENABLE_PTP=false