Compare commits
7 Commits
cb21996691
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
420139cdb9 | ||
| 2e31d9512e | |||
|
|
9dc6bc87ee | ||
| 977ca025a5 | |||
|
|
83e5cdf778 | ||
| 461f5a52ba | |||
|
|
30a49d4a1d |
@@ -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_DATE
|
||||||
ARG BUILD_APP_VERSION
|
ARG BUILD_APP_VERSION
|
||||||
|
|||||||
@@ -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_DATE
|
||||||
ARG BUILD_APP_VERSION
|
ARG BUILD_APP_VERSION
|
||||||
|
|||||||
10
README.md
10
README.md
@@ -11,8 +11,8 @@ This repository is built and pushed automatically.
|
|||||||
### 🏗️ Platform Support
|
### 🏗️ Platform Support
|
||||||
| Architecture | Status | Base Image | Build Date |
|
| Architecture | Status | Base Image | Build Date |
|
||||||
| :--- | :--- | :--- | :--- |
|
| :--- | :--- | :--- | :--- |
|
||||||
| x86_64 (amd64) | ✅ 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 | alpine:3.23 | 23.02.2026 17:29 |
|
| aarch64 (arm64) | ✅ Active | git.pi-farm.de/pi-farm/docker-baseimage-alpine:3.23 | 25.02.2026 17:32 |
|
||||||
|
|
||||||
### 🚀 Docker Pull
|
### 🚀 Docker Pull
|
||||||
```bash
|
```bash
|
||||||
@@ -49,9 +49,13 @@ docker run -d \
|
|||||||
git.pi-farm.de/pi-farm/docker-baseimage-alpine-lighttpd:1.4.82
|
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 History
|
||||||
| Version | Date | Status |
|
| 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 ✅ |
|
| **1.4.82** | 23.02.2026 17:29 | init-build ✅ |
|
||||||
|
|||||||
@@ -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 ✅ |
|
| **1.4.82** | 23.02.2026 17:29 | init-build ✅ |
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
## BUILD STAGE
|
## BUILD STAGE
|
||||||
BUILD_TAG=1.4.82
|
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_MAINTAINER=pi-farm
|
||||||
BUILD_APP_VERSION=v${BUILD_TAG}
|
BUILD_APP_VERSION=v${BUILD_TAG}
|
||||||
BUILD_APP_NAME=basimage-alpine-lighttpd
|
BUILD_APP_NAME=baseimage-alpine-lighttpd
|
||||||
BUILD_APP_USER=pi
|
BUILD_APP_USER=pi
|
||||||
BUILD_APP_UID=1000
|
BUILD_APP_UID=1000
|
||||||
BUILD_APP_GID=1000
|
BUILD_APP_GID=1000
|
||||||
|
|||||||
@@ -9,10 +9,6 @@ if [ ! -f /config/lighttpd.conf ]; then
|
|||||||
cp /defaults/lighttpd.conf /config/lighttpd.conf
|
cp /defaults/lighttpd.conf /config/lighttpd.conf
|
||||||
fi
|
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}"
|
echo "Set permissions to PUID: ${PUID:-911} and PGID: ${PGID:-1000}"
|
||||||
chown -R "${PUID:-911}:${PGID:-1000}" /config
|
chown -R "${PUID:-911}:${PGID:-1000}" /config
|
||||||
chown -R "${PUID:-911}:${PGID:-1000}" /app/www
|
chown -R "${PUID:-911}:${PGID:-1000}" /app/www
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
init-lighttpd-config
|
|
||||||
Reference in New Issue
Block a user