[READ-ONLY] Mirror of https://github.com/FoxxMD/docker-proxy-filter. Filter the contents of Docker API responses
docker docker-socket-proxy filter
0

Configure Feed

Select the types of activity you want to include in your feed.

Update readme with features

FoxxMD (Oct 8, 2025, 12:54 AM UTC) eb8a14f2 63ef86cf

+13
+13
README.md
··· 11 11 12 12 Combined with a socket-proxy container that provides granular endpoint access it's possible to expose only information about specific containers in a read-only context. 13 13 14 + ## Features 15 + 16 + ### `CONTAINER_NAMES` 17 + 18 + Using this ENV changes Docker API responses: 19 + 20 + * Filters [List Containers](https://docs.docker.com/reference/api/engine/version/v1.48/#tag/Container/operation/ContainerList) responses so any container with a name that does not include a value from `CONTAINER_NAMES` is removed. 21 + * Any other [Container](https://docs.docker.com/reference/api/engine/version/v1.48/#tag/Container) endpoints will return 404 if the container name does not include a value from `CONTAINER_NAMES` 22 + 23 + ### `SCRUB_ENVS` 24 + 25 + When `true` any responses from the [Container Inspect](https://docs.docker.com/reference/api/engine/version/v1.48/#tag/Container/operation/ContainerInspect) endpoint will have `Config.Env` set to an empty array. 26 + 14 27 ## Example 15 28 16 29 ```yaml