diff options
| author | Aldrik Ramaekers <aldrikboy@gmail.com> | 2025-09-27 18:38:35 +0200 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrikboy@gmail.com> | 2025-09-27 18:38:35 +0200 |
| commit | d8c4d84dc75300c6d4d8b0adceafa33741960b92 (patch) | |
| tree | 00e2dfcc5c836d62fccff76c862e6ec3b0a74db8 /libs/cpp-httplib/test/proxy/docker-compose.yml | |
| parent | fa088bb60692ba02d30d39affa9a31d9e2b688e2 (diff) | |
added http lib, working on AI invoice importing
Diffstat (limited to 'libs/cpp-httplib/test/proxy/docker-compose.yml')
| -rw-r--r-- | libs/cpp-httplib/test/proxy/docker-compose.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/libs/cpp-httplib/test/proxy/docker-compose.yml b/libs/cpp-httplib/test/proxy/docker-compose.yml new file mode 100644 index 0000000..8ffe81e --- /dev/null +++ b/libs/cpp-httplib/test/proxy/docker-compose.yml @@ -0,0 +1,20 @@ +services: + squid_basic: + image: squid_basic + restart: always + ports: + - "3128:3128" + build: + context: ./ + args: + auth: basic + + squid_digest: + image: squid_digest + restart: always + ports: + - "3129:3129" + build: + context: ./ + args: + auth: digest |
