docker-ntp
docker-ntp copied to clipboard
Access Log data not there
Hi there, I run your nice container for NTP server, since Ubiquiti decided in all there wisdom to not implement a NTP Server in their UDM's AND not allow a FQDN to be set as NTP server in DHCP.
I want to see if all is configured correctly by looking at the access logs of the NTP container. But, I can't find them. /var/log is empty, /var/log/chrony is empty. And the stoud isn't showing access. It does show what source is selected.
How to view the access logs?
ps. my compose.yaml:
services: ntp: build: . image: cturra/ntp:latest container_name: ntp restart: always networks: - APPS ports: - 123:123/udp environment: - TZ=Europe/Amsterdam - - NTP_SERVERS=0.nl.pool.ntp.org,1.nl.pool.ntp.org,2.nl.pool.ntp.org,3.nl.pool.ntp.org
- LOG_LEVEL=0
- NOCLIENTLOG=false
networks: APPS: external: true