Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 000_introduction/10_creds/nginx/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nginx:1.29.7
FROM nginx:1.31.4
COPY default.conf /etc/nginx/conf.d/
COPY index.html /usr/share/nginx/html/
COPY codes /usr/share/nginx/html/codes/
2 changes: 1 addition & 1 deletion 010_docker/020_advanced/050_networks/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM nginx:1.29.7-alpine
FROM nginx:1.31.4-alpine

RUN apk add --update-cache --no-cache iputils
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ services:
- public
- private
svc2:
image: nginx:1.29.7
image: nginx:1.31.4
networks:
- private
2 changes: 1 addition & 1 deletion 010_docker/020_advanced/050_networks/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ services:
build:
context: .
svc2:
image: nginx:1.29.7
image: nginx:1.31.4
2 changes: 1 addition & 1 deletion 010_docker/020_advanced/150_entrypoint/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nginx:1.29.7
FROM nginx:1.31.4
COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh
ENTRYPOINT [ "/entrypoint.sh" ]
2 changes: 1 addition & 1 deletion 010_docker/070_testing/goss/healthz/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM aelsabbahy/goss:v0.3.16 as goss

FROM nginx:1.29.7
FROM nginx:1.31.4

# Copy binaries
COPY --from=goss /goss /goss
Expand Down
2 changes: 1 addition & 1 deletion 010_docker/070_testing/multi-stage/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nginx:1.29.7 AS base
FROM nginx:1.31.4 AS base

FROM base AS testing

Expand Down
2 changes: 1 addition & 1 deletion 100_monitoring/prometheus/cadvisor/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ services:

nginx:
# https://hub.docker.com/_/nginx
image: nginx:1.29.7
image: nginx:1.31.4
container_name: nginx
2 changes: 1 addition & 1 deletion 120_kubernetes/kustomize/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ configMapGenerator:
images:
- name: nginx
newName: nginx
newTag: "1.29"
newTag: "1.31"

replicas:
- name: my-deployment
Expand Down
2 changes: 1 addition & 1 deletion 160_gitlab_ci/001_server/nginx/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#syntax=docker/dockerfile:1.22.0

FROM nginx:1.29.7
FROM nginx:1.31.4

RUN <<EOF
apt-get update
Expand Down
2 changes: 1 addition & 1 deletion 160_gitlab_ci/220_services/snapshot/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ default:
image: golang:1.26.1

services:
- nginx:1.29.7
- nginx:1.31.4

test-service:
extends:
Expand Down