titanz 096d62a747
All checks were successful
Build Unprivileged Stable / Build & push new image (push) Successful in 10m27s
Build Unprivileged Stable Slim / Build & push new image (push) Successful in 10m26s
Build Unprivileged Mainline / Build & push new image (push) Successful in 10m26s
Build Unprivileged Mainline Slim / Build & push new image (push) Successful in 10m26s
Build Stable / Build & push new image (push) Successful in 10m26s
Build Stable Slim / Build & push new image (push) Successful in 10m27s
Build Mainline / Build & push new image (push) Successful in 10m27s
Build Mainline Slim / Build & push new image (push) Successful in 10m26s
typo in action
2025-02-07 17:31:55 +01:00
2025-02-07 17:31:55 +01:00
2025-02-06 20:32:35 +01:00
2025-02-06 20:32:35 +01:00
2025-02-06 20:32:35 +01:00
2025-02-06 20:32:35 +01:00
2025-02-06 20:32:35 +01:00
2025-02-06 20:32:35 +01:00
2025-02-06 20:32:35 +01:00
2025-02-06 20:32:35 +01:00
2025-02-06 20:32:35 +01:00
2025-02-06 20:35:36 +01:00

NGINX

Build unprivileged mainline slim, scan & push Build unprivileged stable slim, scan & push

Features & usage

  • Built on upstream NGINX images, to be used as a drop-in replacement. Comes with regular rebuilds and hardened_malloc which are standard among titanz containers.
  • Adds ca-certificates package for MTLS setups.

Sample Docker Compose config

 nginx:
    container_name: nginx
    image: git.conorz.at/titanz-containers/nginx:unprivileged-slim
    restart: unless-stopped
    ports:
      - "8080:8080/tcp"
    volumes:
      - "./nginx/default.conf:/etc/nginx/conf.d/default.conf:Z,ro"
    user: "101:101"
    read_only: true
    tmpfs:
      - /var/cache/nginx:mode=0770,uid=101,gid=101,noexec,nosuid,nodev
      - /tmp:mode=0770,uid=101,gid=101,noexec,nosuid,nodev
    security_opt:
      - "no-new-privileges=true"
    cap_drop:
      - ALL

Licensing

  • The code in this repository is licensed under the Apache license. 😇
  • These images are built on upstream images, which are under the BSD license. Copyright to the base images belongs to F5 Inc.
  • Any image built by titanz containers is provided under the combination of license terms resulting from the use of individual packages.
Description
No description provided
Readme Apache-2.0 46 KiB
Languages
Dockerfile 100%