Update to Koha 24.11
This commit is contained in:
parent
8adbdfd447
commit
244f06b264
|
|
@ -1,8 +1,8 @@
|
||||||
FROM debian:bullseye
|
FROM debian:bookworm
|
||||||
|
|
||||||
ENV DEBIAN_FRONTEND noninteractive
|
ENV DEBIAN_FRONTEND noninteractive
|
||||||
ARG S6_OVERLAY_VERSION=3.1.3.0
|
ARG S6_OVERLAY_VERSION=3.2.0.2
|
||||||
ARG KOHA_VERSION=22.11
|
ARG KOHA_VERSION=24.11
|
||||||
ARG TARGETARCH
|
ARG TARGETARCH
|
||||||
|
|
||||||
LABEL org.opencontainers.image.source=https://github.com/teorgamm/koha-docker
|
LABEL org.opencontainers.image.source=https://github.com/teorgamm/koha-docker
|
||||||
|
|
@ -28,7 +28,7 @@ RUN echo ${TARGETARCH} && case ${TARGETARCH} in \
|
||||||
&& wget -P /tmp/ -q https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-${S6_ARCH}.tar.xz \
|
&& wget -P /tmp/ -q https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-${S6_ARCH}.tar.xz \
|
||||||
&& tar -C / -Jxpf /tmp/s6-overlay-${S6_ARCH}.tar.xz
|
&& tar -C / -Jxpf /tmp/s6-overlay-${S6_ARCH}.tar.xz
|
||||||
|
|
||||||
RUN mkdir /etc/apt/keyrings/ && \
|
RUN mkdir -p /etc/apt/keyrings/ && \
|
||||||
wget -qO - https://debian.koha-community.org/koha/gpg.asc | gpg --dearmor -o /etc/apt/keyrings/koha.gpg && \
|
wget -qO - https://debian.koha-community.org/koha/gpg.asc | gpg --dearmor -o /etc/apt/keyrings/koha.gpg && \
|
||||||
echo "deb [signed-by=/etc/apt/keyrings/koha.gpg] https://debian.koha-community.org/koha ${KOHA_VERSION} main bullseye" | tee /etc/apt/sources.list.d/koha.list
|
echo "deb [signed-by=/etc/apt/keyrings/koha.gpg] https://debian.koha-community.org/koha ${KOHA_VERSION} main bullseye" | tee /etc/apt/sources.list.d/koha.list
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# koha-docker
|
# koha-docker
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
A Koha Docker container which includes:
|
A Koha Docker container which includes:
|
||||||
* The Apache webserver serving the OPAC (Port 8080) and
|
* The Apache webserver serving the OPAC (Port 8080) and
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
version: "3.9"
|
version: "3.9"
|
||||||
services:
|
services:
|
||||||
koha:
|
koha:
|
||||||
image: teogramm/koha:22.11
|
image: teogramm/koha:24.11
|
||||||
ports:
|
ports:
|
||||||
- 8080:8080
|
- 8080:8080
|
||||||
- 8081:8081
|
- 8081:8081
|
||||||
|
|
|
||||||
|
|
@ -6,4 +6,4 @@ s6-envdir /etc/koha-envvars
|
||||||
|
|
||||||
s6-setuidgid default-koha
|
s6-setuidgid default-koha
|
||||||
|
|
||||||
/usr/bin/perl /usr/share/koha/bin/background_jobs_worker.pl
|
/usr/bin/perl /usr/share/koha/bin/workers/background_jobs_worker.pl
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue