You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(readme): add docker hub note for pulling dependencies and base images
fix: add safe_sed_i helper and replace VirtioFS workarounds
- Add safe_sed_i() function using mktemp+cat pattern to replace
the fragile sed > tmp; cat tmp > file; rm tmp workaround used
for VirtioFS compatibility (Docker Desktop for Mac)
- Replace dd if=... of=... initial file copies with cat ... > ...
for clearer intent
- Remove deprecated VirtioFS workaround comments referencing the
Docker forum bug report
feat: parameterize hardcoded PHP 8.4 references via build arg
- Add PHP_PACKAGE_VERSION build arg (default 8.4) to core/Dockerfile
- Replace all php8.4 package names, binary paths, and config refs
with php for single-point-of-change upgrades
- Create /usr/local/sbin/php-fpm symlink so entrypoint scripts
use php-fpm instead of hardcoded versioned binary paths
- Use @PHP_VERSION@ placeholder in nginx config, templated at
build time via sed
- Pass PHP_PACKAGE_VERSION to docker-compose build args
- Update entrypoint_fpm.sh and kubernetes/entrypoint_fpm.sh
to use the version-agnostic php-fpm command
feat: add Makefile for common build and runtime tasks
Provides convenient targets for the most frequent operations:
- build, build-core, build-modules, build-guard, build-slim, bake
- up, down, logs for runtime management
- shellcheck, clean, prune for maintenance
- help target as default to list available commands
fix: restore AUTOCONF_ADMIN_KEY backward compat with cleaner pattern
Now uses a single export line that expands AUTOCONF_ADMIN_KEY
as an inline fallback, keeping backward compat for users with
AUTOCONF_ADMIN_KEY in their .env files.
Co-authored-by: m.amirkar <m.amirkar@apk-group.net>
0 commit comments