diff --git a/.goreleaser.yml b/.goreleaser.yml
index 9ba8bb49..a67bf940 100644
--- a/.goreleaser.yml
+++ b/.goreleaser.yml
@@ -13,6 +13,18 @@ builds:
       - "-linkmode=external -extldflags=-static -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}}"
     goos: [linux]
     goarch: [amd64]
+  -
+    id: ntfy_linux_armv5
+    binary: ntfy
+    env:
+      - CGO_ENABLED=1 # required for go-sqlite3
+      - CC=arm-linux-gnueabi-gcc # apt install gcc-arm-linux-gnueabi
+    tags: [sqlite_omit_load_extension,osusergo,netgo]
+    ldflags:
+      - "-linkmode=external -extldflags=-static -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}}"
+    goos: [linux]
+    goarch: [arm]
+    goarm: [5]
   -
     id: ntfy_linux_armv6
     binary: ntfy
@@ -108,6 +120,7 @@ archives:
     id: ntfy_linux
     builds:
       - ntfy_linux_amd64
+      - ntfy_linux_armv5
       - ntfy_linux_armv6
       - ntfy_linux_armv7
       - ntfy_linux_arm64
@@ -190,6 +203,14 @@ dockers:
     goarm: 6
     build_flag_templates:
       - "--platform=linux/arm/v6"
+  - image_templates:
+      - &armv5_image "binwiederhier/ntfy:{{ .Tag }}-armv5"
+    use: buildx
+    dockerfile: Dockerfile
+    goarch: arm
+    goarm: 5
+    build_flag_templates:
+      - "--platform=linux/arm/v5"
 docker_manifests:
   - name_template: "binwiederhier/ntfy:latest"
     image_templates:
@@ -197,9 +218,11 @@ docker_manifests:
       - *arm64v8_image
       - *armv7_image
       - *armv6_image
+      - *armv5_image
   - name_template: "binwiederhier/ntfy:{{ .Tag }}"
     image_templates:
       - *amd64_image
       - *arm64v8_image
       - *armv7_image
       - *armv6_image
+      - *armv5_image
diff --git a/Makefile b/Makefile
index 76f46a84..ef3f9e3b 100644
--- a/Makefile
+++ b/Makefile
@@ -20,6 +20,7 @@ help:
 	@echo "Build server & client (using GoReleaser, not release version):"
 	@echo "  make cli                        - Build server & client (all architectures)"
 	@echo "  make cli-linux-amd64            - Build server & client (Linux, amd64 only)"
+	@echo "  make cli-linux-armv5            - Build server & client (Linux, armv5 only)"
 	@echo "  make cli-linux-armv6            - Build server & client (Linux, armv6 only)"
 	@echo "  make cli-linux-armv7            - Build server & client (Linux, armv7 only)"
 	@echo "  make cli-linux-arm64            - Build server & client (Linux, arm64 only)"
@@ -146,6 +147,9 @@ cli: cli-deps
 cli-linux-amd64: cli-deps-static-sites
 	goreleaser build --snapshot --clean --id ntfy_linux_amd64
 
+cli-linux-armv5: cli-deps-static-sites cli-deps-gcc-armv6-armv7
+	goreleaser build --snapshot --clean --id ntfy_linux_armv5
+
 cli-linux-armv6: cli-deps-static-sites cli-deps-gcc-armv6-armv7
 	goreleaser build --snapshot --clean --id ntfy_linux_armv6
 
diff --git a/docs/install.md b/docs/install.md
index ad22f971..2db0e7d8 100644
--- a/docs/install.md
+++ b/docs/install.md
@@ -33,6 +33,15 @@ deb/rpm packages.
     sudo ntfy serve
     ```
 
+=== "armv5"
+    ```bash
+    wget https://github.com/binwiederhier/ntfy/releases/download/v2.3.1/ntfy_2.3.1_linux_armv5.tar.gz
+    tar zxvf ntfy_2.3.1_linux_armv5.tar.gz
+    sudo cp -a ntfy_2.3.1_linux_armv5/ntfy /usr/bin/ntfy
+    sudo mkdir /etc/ntfy && sudo cp ntfy_2.3.1_linux_armv5/{client,server}/*.yml /etc/ntfy
+    sudo ntfy serve
+    ```
+
 === "armv6"
     ```bash
     wget https://github.com/binwiederhier/ntfy/releases/download/v2.3.1/ntfy_2.3.1_linux_armv6.tar.gz
@@ -69,7 +78,20 @@ Installation via Debian repository:
     curl -fsSL https://archive.heckel.io/apt/pubkey.txt | sudo gpg --dearmor -o /etc/apt/keyrings/archive.heckel.io.gpg
     sudo apt install apt-transport-https
     sudo sh -c "echo 'deb [arch=amd64 signed-by=/etc/apt/keyrings/archive.heckel.io.gpg] https://archive.heckel.io/apt debian main' \
-        > /etc/apt/sources.list.d/archive.heckel.io.list"  
+        > /etc/apt/sources.list.d/archive.heckel.io.list"
+    sudo apt update
+    sudo apt install ntfy
+    sudo systemctl enable ntfy
+    sudo systemctl start ntfy
+    ```
+
+=== "armv5/armel"
+    ```bash
+    sudo mkdir -p /etc/apt/keyrings
+    curl -fsSL https://archive.heckel.io/apt/pubkey.txt | sudo gpg --dearmor -o /etc/apt/keyrings/archive.heckel.io.gpg
+    sudo apt install apt-transport-https
+    sudo sh -c "echo 'deb [arch=armel signed-by=/etc/apt/keyrings/archive.heckel.io.gpg] https://archive.heckel.io/apt debian main' \
+        > /etc/apt/sources.list.d/archive.heckel.io.list"
     sudo apt update
     sudo apt install ntfy
     sudo systemctl enable ntfy
@@ -112,6 +134,13 @@ Manually installing the .deb file:
     sudo systemctl start ntfy
     ```
 
+=== "armv5"
+    ```bash
+    wget https://github.com/binwiederhier/ntfy/releases/download/v2.3.1/ntfy_2.3.1_linux_armv5.deb
+    sudo dpkg -i ntfy_*.deb
+    sudo systemctl enable ntfy
+    sudo systemctl start ntfy
+
 === "armv6"
     ```bash
     wget https://github.com/binwiederhier/ntfy/releases/download/v2.3.1/ntfy_2.3.1_linux_armv6.deb
@@ -145,6 +174,13 @@ Manually installing the .deb file:
     sudo systemctl start ntfy
     ```
 
+=== "armv5"
+    ```bash
+    sudo rpm -ivh https://github.com/binwiederhier/ntfy/releases/download/v2.3.1/ntfy_2.3.1_linux_armv5.rpm
+    sudo systemctl enable ntfy
+    sudo systemctl start ntfy
+    ```
+
 === "armv6"
     ```bash
     sudo rpm -ivh https://github.com/binwiederhier/ntfy/releases/download/v2.3.1/ntfy_2.3.1_linux_armv6.rpm