mirror of
https://github.com/daniviga/bite.git
synced 2024-11-23 13:26:14 +01:00
Daniele Viganò
e4a3684951
* Add ntpd server to the stack * Enable NTP updates on Arduino * Fix telemetry when clock is 0
9 lines
198 B
Docker
9 lines
198 B
Docker
FROM alpine:3.9
|
|
|
|
RUN apk update && apk add chrony && \
|
|
chown -R chrony:chrony /var/lib/chrony
|
|
COPY ./chrony.conf /etc/chrony/chrony.conf
|
|
|
|
EXPOSE 123/udp
|
|
ENTRYPOINT ["chronyd", "-d", "-s", "-x"]
|