Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/scripts/generate-build-context.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ EOF

# --- Dockerfile for HumHub ---
cat > humhub/Dockerfile <<EOF
FROM php:8.2-fpm
FROM php:8.3-fpm

ARG HUMHUB_VERSION=1.17.2
ARG HUMHUB_VERSION=1.18.0-beta.4

RUN apt-get update && apt-get install -y \\
libzip-dev libfreetype6-dev libjpeg62-turbo-dev libpng-dev \\
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This repository contains a complete Docker setup for running a secure, productio

## Features

- **HumHub**: Latest version (1.17.2) with PHP 8.2
- **HumHub**: Latest version (1.18.0-beta.4) with PHP 8.3
- **Security**: Hardened containers with minimal privileges and capabilities
- **Database**: MariaDB 10.11 with secure configuration
- **Caching**: Redis for improved performance
Expand Down
2 changes: 1 addition & 1 deletion humhub/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.3-fpm
# Set shell with pipefail option
SHELL ["/bin/bash", "-o", "pipefail", "-c"]

ARG HUMHUB_VERSION=1.17.2
ARG HUMHUB_VERSION=1.18.0-beta.4

# Install dependencies
# hadolint ignore=DL3008
Expand Down