{"id":50827649,"url":"https://github.com/wollomatic/socket-proxy-configurator","last_synced_at":"2026-06-13T20:32:01.052Z","repository":{"id":360627198,"uuid":"1250484624","full_name":"wollomatic/socket-proxy-configurator","owner":"wollomatic","description":"A tool to configure wollomatic/socket-proxy","archived":false,"fork":false,"pushed_at":"2026-06-05T11:18:59.000Z","size":322,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-05T12:23:29.978Z","etag":null,"topics":["docker-socket-proxy","socket-proxy"],"latest_commit_sha":null,"homepage":"https://socket-proxy-configurator.wollomatic.dev/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wollomatic.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-05-26T17:17:39.000Z","updated_at":"2026-06-05T11:19:03.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/wollomatic/socket-proxy-configurator","commit_stats":null,"previous_names":["wollomatic/socket-proxy-configurator"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wollomatic/socket-proxy-configurator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wollomatic%2Fsocket-proxy-configurator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wollomatic%2Fsocket-proxy-configurator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wollomatic%2Fsocket-proxy-configurator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wollomatic%2Fsocket-proxy-configurator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wollomatic","download_url":"https://codeload.github.com/wollomatic/socket-proxy-configurator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wollomatic%2Fsocket-proxy-configurator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34300110,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-13T02:00:06.617Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker-socket-proxy","socket-proxy"],"created_at":"2026-06-13T20:32:00.289Z","updated_at":"2026-06-13T20:32:01.046Z","avatar_url":"https://github.com/wollomatic.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# socket-proxy-configurator\n\nA static web application for converting\n[`docker-socket-proxy`](https://github.com/Tecnativa/docker-socket-proxy)\nenvironment-style configuration into allowlist configuration for\n[`wollomatic/socket-proxy`](https://github.com/wollomatic/socket-proxy).\n\nThe application runs entirely in the browser. It does not require a backend,\ndoes not call external APIs, and does not send pasted configuration data away\nfrom the user's machine.\n\nURL: https://socket-proxy-configurator.wollomatic.dev/\n\n\u003e [!NOTE]\n\u003e This is an early release. The resulting allowlists should be carefully\n\u003e reviewed before use in production.\n\n## What It Does\n\nSome docker-socket-proxies use section-based environment variables such as\n`CONTAINERS=1`, `IMAGES=0`, `PING=1`, and `POST=0` to control access to Docker\nAPI paths.\n\n`wollomatic/socket-proxy` uses explicit regular-expression allowlists per HTTP\nmethod instead. This converter translates the familiar `docker-socket-proxy`\ntoggles into compatible `wollomatic/socket-proxy` rules.\n\nFor example, this input:\n\n```env\nCONTAINERS=1\nEVENTS=1\nPING=1\nVERSION=1\nPOST=0\n```\n\ncan be converted into command-line allowlist arguments such as:\n\n```text\n- '-allowGET=(/v[\\d.]+)?/_ping'\n- '-allowGET=(/v[\\d.]+)?/events.*'\n- '-allowGET=(/v[\\d.]+)?/version'\n- '-allowHEAD=(/v[\\d.]+)?/_ping'\n- '-allowHEAD=(/v[\\d.]+)?/events.*'\n- '-allowHEAD=(/v[\\d.]+)?/version'\n```\n\nThe generated output is meant to emulate `docker-socket-proxy` behavior as\nclosely as possible while using the allowlist model provided by\n`wollomatic/socket-proxy`.\n\n## Supported Input\n\nThe converter accepts pasted configuration in common formats:\n\n- plain environment variable files\n- `docker-compose.yml` environment snippets\n- lines prefixed with `export`\n- quoted values\n- comments and empty lines\n\nBoolean values are normalized case-insensitively. Supported enabled values\ninclude `1`, `true`, `yes`, `on`, `enable`, and `enabled`. Supported disabled\nvalues include `0`, `false`, `no`, `off`, `disable`, and `disabled`.\n\nUnknown or invalid environment-style variables are ignored and shown as\nwarnings so the generated result remains auditable.\n\n## Output Formats\n\nThe web app can generate:\n\n- command-line arguments\n- environment variables\n- Docker labels\n\nIt also supports optional network listener compatibility settings for setups\nthat previously exposed `docker-socket-proxy` over a Docker network.\n\n## Compatibility Notes\n\n- `POST=0` generates only `GET` and `HEAD` allowlists.\n- When `POST=1` and **Omit HTTP methods not used by Docker** is enabled, only\n  `POST`, `PUT`, and `DELETE` are generated because these are the write methods\n  used by the Docker API.\n- When `POST=1` and **Omit HTTP methods not used by Docker** is disabled, all HTTP methods supported by\n  `wollomatic/socket-proxy` are allowed for the enabled Docker API sections.\n- Regular expressions are emitted without explicit `^` and `$` anchors because\n  `wollomatic/socket-proxy` adds those internally.\n- Generated rules should be reviewed and tested before use in production.\n\n## Technology\n\n- Svelte 5\n- Vite\n- TypeScript\n- Static single-page application\n\n## AI Assistance Notice\n\nThis application was created with the help of artificial intelligence.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwollomatic%2Fsocket-proxy-configurator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwollomatic%2Fsocket-proxy-configurator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwollomatic%2Fsocket-proxy-configurator/lists"}