# # 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=""