2019-12-15 11:10:37 +00:00
|
|
|
# minimal nginx
|
|
|
|
|
2020-07-04 10:30:43 +00:00
|
|
|
![build](https://github.com/dcarrillo/docker-nginx/workflows/CI/badge.svg)
|
|
|
|
|
2019-12-15 11:10:37 +00:00
|
|
|
Nginx docker image with a minimal set of modules.
|
|
|
|
|
|
|
|
Current modules:
|
|
|
|
|
2020-07-04 10:30:43 +00:00
|
|
|
- stream
|
|
|
|
- http_ssl_module
|
|
|
|
- http_v2_module
|
|
|
|
- http_stub_status_module
|
2019-12-15 11:10:37 +00:00
|
|
|
|
|
|
|
## Configuration
|
|
|
|
|
|
|
|
Edit [conf.env](conf.env)
|
|
|
|
|
|
|
|
```bash
|
2019-12-15 16:57:44 +00:00
|
|
|
NGINX_VERSION=x.xx.x # Nginx version to build from
|
2019-12-15 11:10:37 +00:00
|
|
|
DOCKER_IMAGE=dcarrillo/nginx # Docker image
|
|
|
|
```
|
|
|
|
|
|
|
|
## Build
|
|
|
|
|
|
|
|
Build locally:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
./build.sh
|
|
|
|
```
|
|
|
|
|
2023-03-16 19:35:42 +00:00
|
|
|
Build locally and upload the image to a registry (you must be logged in to the registry)
|
2019-12-15 11:10:37 +00:00
|
|
|
|
|
|
|
```bash
|
|
|
|
./build.sh --push
|
|
|
|
```
|
|
|
|
|
2023-03-16 19:35:42 +00:00
|
|
|
Build locally, tag the image as latest and upload it to a registry (you must be logged in to the registry)
|
2019-12-15 11:10:37 +00:00
|
|
|
|
|
|
|
```bash
|
|
|
|
./build.sh --push --latest
|
|
|
|
```
|
|
|
|
|
|
|
|
## Testing
|
|
|
|
|
|
|
|
Prerequisites:
|
|
|
|
|
2022-07-25 18:47:36 +00:00
|
|
|
- docker
|
|
|
|
- openssl
|
|
|
|
- curl
|
2019-12-15 11:10:37 +00:00
|
|
|
|
|
|
|
```bash
|
|
|
|
# build local image
|
|
|
|
./build.sh
|
|
|
|
|
|
|
|
# run tests
|
|
|
|
./tests/test.sh
|
|
|
|
```
|