
* update files to use one base image file Signed-off-by: James Strong <strong.james.e@gmail.com> * add chart test as well Signed-off-by: James Strong <strong.james.e@gmail.com> * update e2e-test image building Signed-off-by: James Strong <strong.james.e@gmail.com> * update e2e base image arg Signed-off-by: James Strong <strong.james.e@gmail.com> * add current e2e so test run Signed-off-by: James Strong <strong.james.e@gmail.com> * working on fixing build * getting dev-env and make release to work * test * i think buildx is working on mac * updates * why docker for mac and linux cli differ * fix target arch * fix target arch * fix loag issue * fix issue * update the chroot docker file * fix docker base build * mac is the issue * env not getting to the e2e deployment.go file * fix pull issue * fix pull issue * move test scripts into test folder * clean up ci * updates for PR * remove unnesscary var
27 lines
1.2 KiB
Markdown
27 lines
1.2 KiB
Markdown
NGINX base image using [alpine](https://www.alpinelinux.org/)
|
|
|
|
This custom image contains:
|
|
|
|
- [nginx-http-auth-digest](https://github.com/atomx/nginx-http-auth-digest)
|
|
- [ngx_http_substitutions_filter_module](https://github.com/yaoweibin/ngx_http_substitutions_filter_module)
|
|
- [OpenTelemetry-CPP](https://github.com/open-telemetry/opentelemetry-cpp)
|
|
- [OpenTelemetry-CPP-Nginx](https://github.com/open-telemetry/opentelemetry-cpp-contrib/tree/main/instrumentation/nginx)
|
|
- [nginx-opentracing](https://github.com/opentracing-contrib/nginx-opentracing)
|
|
- [opentracing-cpp](https://github.com/opentracing/opentracing-cpp)
|
|
- [zipkin-cpp-opentracing](https://github.com/rnburn/zipkin-cpp-opentracing)
|
|
- [dd-opentracing-cpp](https://github.com/DataDog/dd-opentracing-cpp)
|
|
- [ModSecurity-nginx](https://github.com/SpiderLabs/ModSecurity-nginx) (only supported in x86_64)
|
|
- [brotli](https://github.com/google/brotli)
|
|
- [geoip2](https://github.com/leev/ngx_http_geoip2_module)
|
|
|
|
**How to use this image:**
|
|
This image provides a default configuration file with no backend servers.
|
|
|
|
_Using docker_
|
|
|
|
NGINX base image we use is defined in NGINX_BASE file at the root of the project
|
|
|
|
```console
|
|
docker run -v /some/nginx.conf:/etc/nginx/nginx.conf:ro $(cat ../../NGINX_BASE)
|
|
```
|
|
|