Skip to content

lblod/docker-monitor-service

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker-monitor-service

This service keeps track of containers defined within the connected docker daemon and keeps their state up to date in the database.

usage

This docker image needs access to a docker socket. If you are using a usernamespace, it is recommended to run this docker using the --userns='host' switch. On some systems it may also need the --privileged flag. If necessary you can use a docker proxy such as ``.

A typical docker compose file may look like this:

version: "3"
services:
  monitor:
    image: lblod/docker-monitor-service
    links:
      - database:database
    privileged: true
    userns_mode: "host"
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
  database:
    image: tenforce/virtuoso:1.3.1-virtuoso7.2.4
    environment:
      SPARQL_UPDATE: "true"
      DEFAULT_GRAPH: "http://mu.semte.ch/application"
docker run -d --userns=host --privileged -v /var/run/docker.sock:/var/run/docker.sock lblod/docker-monitor-service

configuration

The docker image can be configured using the following environment flags:

  • MONITOR_DOCKER_SOCKET: default: ``file:///var/run/docker.sockspecify a different url for the docker socket. currently supports the file and http scheme. For http usehttp://IP_OR_DOMAIN:PORT`.
  • MONTITOR_FILTER_LABEL: default: none, if set only keep track of containers that have this label set.
  • MU_SPARQL_ENDPOINT: default 'http://database:8890/sparql, sparql endpoint to connect to

About

No description or website provided.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published