Giter Site home page Giter Site logo

joshuaalewis / docker-janitor Goto Github PK

View Code? Open in Web Editor NEW

This project forked from flaviostutz/docker-janitor

0.0 1.0 0.0 8 KB

This containers performs continuous cleanups on unused Docker resources on the host

License: MIT License

Dockerfile 31.49% Shell 68.51%

docker-janitor's Introduction

docker-janitor

This containers performs continuous cleanups on unused Docker resources on the host.

Basically it performs docker system prune --all from time to time.

Usage

  • To run it on a standalone host
    • docker run -v /var/run/docker.sock:/var/run/docker.sock getsoma/janitor
  • To run on all hosts of a Swarm Cluster
    • docker-compose.yml
version: '3.5'

services:
  janitor:
    image: getsoma/janitor
    build: .
    deploy:
      mode: global
    environment:
      - SLEEP_TIME=86400
      - UNUSED_TIME=24h
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock```

docker stack deploy --compose-file docker-compose.yml janitor

ENV

  • SLEEP_TIME: time in seconds between janitor script runs (default: 86400 - once a day)
  • SKIP_RANDOM_BACKOFF: On the first run, the container will sleep randomly between 0 and SLEEP_TIME before entering the loop (random backoff) so that the hosts won't run this script at the same time, possibly causing unecessary global pressure on the cluster (default: false)
  • UNUSED_TIME: min age of resource creation before being pruned (default: 24h).

docker-janitor's People

Contributors

flaviostutz avatar joshuaalewis avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.