Compare commits

...

7 Commits

Author SHA1 Message Date
Gitea Action
420139cdb9 changed dependencies to dependencies.d [skip ci] 2026-02-25 16:32:37 +00:00
2e31d9512e changed dependencies to dependencies.d
All checks were successful
/ release-and-build (push) Successful in 30s
2026-02-25 17:31:32 +01:00
Gitea Action
9dc6bc87ee remove creating index.html [skip ci] 2026-02-24 13:02:06 +00:00
977ca025a5 remove creating index.html
All checks were successful
/ release-and-build (push) Successful in 21s
2026-02-24 13:01:46 +00:00
Gitea Action
83e5cdf778 set BUILD_BASE_IMAGE in correctly [skip ci] 2026-02-24 08:43:50 +00:00
461f5a52ba set BUILD_BASE_IMAGE in correctly
All checks were successful
/ release-and-build (push) Successful in 22s
2026-02-24 09:43:23 +01:00
Gitea Action
30a49d4a1d Merge branch main of https://git.pi-farm.de/pi-farm/docker-baseimage-alpine-lighttpd [skip ci] 2026-02-23 16:51:24 +00:00
10 changed files with 17 additions and 12 deletions

View File

@@ -1,4 +1,5 @@
FROM git.pi-farm.de/pi-farm/docker-baseimage-alpine:3.23
ARG BUILD_BASE_IMAGE=alpine:3.23 #Fallback alpine:3.23
FROM ${BUILD_BASE_IMAGE}
ARG BUILD_DATE
ARG BUILD_APP_VERSION

View File

@@ -1,4 +1,5 @@
FROM git.pi-farm.de/pi-farm/docker-baseimage-alpine:3.23
ARG BUILD_BASE_IMAGE=alpine:3.23 #Fallback alpine:3.23
FROM ${BUILD_BASE_IMAGE}
ARG BUILD_DATE
ARG BUILD_APP_VERSION

View File

@@ -11,8 +11,8 @@ This repository is built and pushed automatically.
### 🏗️ Platform Support
| Architecture | Status | Base Image | Build Date |
| :--- | :--- | :--- | :--- |
| x86_64 (amd64) | ✅ Active | alpine:3.23 | 23.02.2026 17:29 |
| aarch64 (arm64) | ✅ Active | alpine:3.23 | 23.02.2026 17:29 |
| x86_64 (amd64) | ✅ Active | git.pi-farm.de/pi-farm/docker-baseimage-alpine:3.23 | 25.02.2026 17:32 |
| aarch64 (arm64) | ✅ Active | git.pi-farm.de/pi-farm/docker-baseimage-alpine:3.23 | 25.02.2026 17:32 |
### 🚀 Docker Pull
```bash
@@ -49,9 +49,13 @@ docker run -d \
git.pi-farm.de/pi-farm/docker-baseimage-alpine-lighttpd:1.4.82
```
*Last updated on: 23.02.2026 17:29*
*Last updated on: 25.02.2026 17:32*
### 📜 Version History
| Version | Date | Status |
| :--- | :--- | :--- |
| **1.4.82** | 25.02.2026 17:32 | changed dependencies to dependencies.d ✅ |
| **1.4.82** | 24.02.2026 14:02 | remove creating index.html ✅ |
| **1.4.82** | 24.02.2026 09:43 | set BUILD_BASE_IMAGE in correctly ✅ |
| **1.4.82** | 23.02.2026 17:51 | Merge branch main of https://git.pi-farm.de/pi-farm/docker-baseimage-alpine-lighttpd ✅ |
| **1.4.82** | 23.02.2026 17:29 | init-build ✅ |

View File

@@ -1,2 +1,6 @@
| **1.4.82** | 25.02.2026 17:32 | changed dependencies to dependencies.d ✅ |
| **1.4.82** | 24.02.2026 14:02 | remove creating index.html ✅ |
| **1.4.82** | 24.02.2026 09:43 | set BUILD_BASE_IMAGE in correctly ✅ |
| **1.4.82** | 23.02.2026 17:51 | Merge branch main of https://git.pi-farm.de/pi-farm/docker-baseimage-alpine-lighttpd ✅ |
| **1.4.82** | 23.02.2026 17:29 | init-build ✅ |

View File

@@ -1,9 +1,9 @@
## BUILD STAGE
BUILD_TAG=1.4.82
BUILD_BASE_IMAGE=alpine:3.23
BUILD_BASE_IMAGE=git.pi-farm.de/pi-farm/docker-baseimage-alpine:3.23
BUILD_MAINTAINER=pi-farm
BUILD_APP_VERSION=v${BUILD_TAG}
BUILD_APP_NAME=basimage-alpine-lighttpd
BUILD_APP_NAME=baseimage-alpine-lighttpd
BUILD_APP_USER=pi
BUILD_APP_UID=1000
BUILD_APP_GID=1000

View File

@@ -9,10 +9,6 @@ if [ ! -f /config/lighttpd.conf ]; then
cp /defaults/lighttpd.conf /config/lighttpd.conf
fi
if [ ! -f /app/www/index.html ]; then
echo "<h1>It works!</h1>" > /app/www/index.html
fi
echo "Set permissions to PUID: ${PUID:-911} and PGID: ${PGID:-1000}"
chown -R "${PUID:-911}:${PGID:-1000}" /config
chown -R "${PUID:-911}:${PGID:-1000}" /app/www

View File

@@ -1 +0,0 @@
init-lighttpd-config