Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

RRDcached Docker image

License

NotificationsYou must be signed in to change notification settings

crazy-max/docker-rrdcached

Repository files navigation

Latest VersionBuild StatusDocker StarsDocker Pulls
Become a sponsorDonate Paypal

About

RRDcached Docker image.

Tip

Want to be notified of new releases? Check out 🔔Diun (Docker Image Update Notifier)project!


Features

  • Run as non-root user
  • Multi-platform image

Build locally

git clone https://github.com/crazy-max/docker-rrdcached.gitcd docker-rrdcached# Build image and output to docker (default)docker buildx bake# Build multi-platform imagedocker buildx bake image-all

Image

RegistryImage
Docker Hubcrazymax/rrdcached
GitHub Container Registryghcr.io/crazy-max/rrdcached

Following platforms for this image are available:

$ docker buildx imagetools inspect crazymax/rrdcached --format "{{json .Manifest}}" | \  jq -r '.manifests[] | select(.platform.os != null and .platform.os != "unknown") | .platform | "\(.os)/\(.architecture)\(if .variant then "/" + .variant else "" end)"'linux/386linux/amd64linux/arm/v6linux/arm/v7linux/arm64linux/ppc64lelinux/riscv64linux/s390x

Environment variables

  • TZ : Timezone assigned to the container (defaultUTC)
  • PUID : Daemon user id (default1000)
  • PGID : Daemon group id (default1000)
  • LOG_LEVEL : Log level, called with-V (defaultLOG_INFO)
  • WRITE_TIMEOUT : Data is written to disk everyX seconds, called with-w (default300)
  • WRITE_JITTER : Delay writing of each RRD for a random number of seconds in the range, called with-z
  • WRITE_THREADS : Number of threads used for writing RRD files, called with-t (default4)
  • FLUSH_DEAD_DATA_INTERVAL : EveryX seconds the entire cache is searched for old values which are written to disk, called with-f (default3600)

Volumes

  • /data/db : Contains rrd database
  • /data/journal : Container rrd journal files

Warning

Note that the volumes should be owned by the user/group with the specifiedPUID andPGID. If you don't give the volume correct permissions, thecontainer may not start.

Ports

  • 42217 : RRDcached port

Usage

Docker Compose

Docker compose is the recommended way to run this image. You can use the followingcompose template, then run the container:

docker compose up -ddocker compose logs -f

Command line

You can also use the following minimal command:

$ docker run -d -p 42217:42217 --name rrdcached \  -e TZ="Europe/Paris" \  -v$(pwd)/data/db:/data/db \  -v$(pwd)/data/journal:/data/journal \  crazymax/rrdcached

Upgrade

Recreate the container whenever I push an update:

docker compose pulldocker compose up -d

Contributing

Want to contribute? Awesome! The most basic way to show your support is to starthe project, or to raise issues. You can also support this project bybecoming a sponsor on GitHubor by making aPayPal donation to ensure thisjourney continues indefinitely!

Thanks again for your support, it is much appreciated! 🙏

License

MIT. SeeLICENSE for more details.

About

RRDcached Docker image

Topics

Resources

License

Stars

Watchers

Forks

Sponsor this project

  •  

Packages

 
 
 

Contributors3

  •  
  •  
  •  

[8]ページ先頭

©2009-2025 Movatter.jp