Alpaquita Linux is a lightweight operating system optimized for the deployment of cloud native applications. It is an optimal solution for running applications with various workloads and is characterized by
Alpaquita Linux requires a small amount of resources to run. The extra modules and additional packages can be installed from Alpaquita apk repository depending on the project requirements. Alpaquita comes in two versions: one based on optimized Musl libc, and the other one on Glibc libc.
Developer and maintainer: BellSoft
For documentation and support information, refer to the official page.
This repository contains Alpaquita Linux Stream images with the Nginx web server.
The next code example demonstrates a Dockerfile that creates an image to host simple static content:
FROM bellsoft/alpaquita-linux-nginx
COPY static-html-directory /var/lib/nginx/html
Run the following commands in a directory where the static-html-directory directory is located to build and start your container:
$ docker build -t my-nginx .
$ docker run -d -p 8080:80 my-nginx nginx -g 'daemon off;'
After that, you can reach http://localhost:8080.
Tag name structure:
[Bundle type-][Nginx version]-[libc type]
If Bundle type is omitted, it is treated as the default one.
There are the following Bundle type variants:
It contains the minimal set of packages needed to run nginx.
It does not contain any dynamic nginx modules.
This is as the default one, but also contains the following dynamic modules:
ngx_http_brotli_filterngx_http_brotli_staticngx_http_geoipngx_http_image_filterngx_http_jsngx_http_xslt_filterngx_stream_geoipngx_stream_jsngx_streamThis is as the dynamic one, but also provides an ngx_http_otel dynamic module.
Nginx version is an Nginx version string. It has a X.Y format, e.g. 1.30.
libc type is a libc type (glibc or musl).
As with all Docker images, these also contain other software, which may be distributed under other licenses.
The list of installed software components and their licenses can be retrieved by executing the apk list -I command in the image.
As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.
Content type
Image
Digest
sha256:1cc052118…
Size
4.7 MB
Last updated
13 days ago
docker pull bellsoft/alpaquita-linux-nginx