mirror of
https://github.com/rodneyosodo/homelab.git
synced 2026-08-07 07:15:03 +00:00
f5051c6028
Signed-off-by: Rodney Osodo <socials@rodneyosodo.com>
18 lines
462 B
YAML
18 lines
462 B
YAML
services:
|
|
ntp:
|
|
container_name: ntp
|
|
image: docker.io/cturra/ntp:latest
|
|
restart: unless-stopped
|
|
networks:
|
|
- homelab-network
|
|
ports:
|
|
- 123:123/udp
|
|
environment:
|
|
- NTP_SERVERS=time.cloudflare.com,time1.google.com,time2.google.com,time3.google.com
|
|
- LOG_LEVEL=0
|
|
- TZ=Africa/Nairobi
|
|
- NOCLIENTLOG=true
|
|
# - ENABLE_NTS=true # Google NTS doesn't like this
|
|
security_opt:
|
|
- no-new-privileges:true
|