Initial commit
All checks were successful
Update Docker Hub Description / dockerHubDescription (push) Successful in 14s
Docker Image CI / build_docker_images (push) Successful in 12m27s

This commit is contained in:
2025-11-11 16:54:22 +01:00
committed by GianLuca Vagnuzzi
commit e37d1034f5
9 changed files with 893 additions and 0 deletions

13
compose.yml Normal file
View File

@@ -0,0 +1,13 @@
services:
chrony:
image: rardcode/chrony
container_name: chrony
#environment:
#- ALLOW_CIDR=0.0.0.0/0 # clients to connect and get the time. Default is none.
#- NTP_SERVER=time.inrimme.it # The NTP server to get the time to set from. Default is pool.ntp.org.
#- SYNC_RTC=false # Sync the realtime clock on the machine/instance the service is running. Default is true.
network_mode: host # Recommended so that clients come with the real ip, otherwise they would all get with only ip, that of the docker
cap_add:
- SYS_TIME
restart: unless-stopped