Files
docker-observation/README.md
2023-11-29 20:50:30 -06:00

18 lines
339 B
Markdown

# docker-observation
Various tools to monitor Docker containers
## Environment Variables
- `DOCKER_INFLUXDB_INIT_ORG`
- `INFLUX_WRITE_TOKEN`
- `INFLUX_HOST`
- `LOKI_HOST`
## Setup
Set the DOCKER_GUID so the container has permission to access the socket
```shell
export DOCKER_GUID=$(getent group docker | awk -F ':' '{print $3}')
```