Mitigating Docker Build Issues on Older glibc Hosts
|

Mitigating Docker Build Issues on Older glibc Hosts

When running newer operating systems as Docker containers on older host systems—such as Ubuntu 20.04 or CentOS 7—a compatibility issue arises due to a new glibc call (clone3) not translating correctly to the older glibc (<=2.34) of the host system, resulting in the call being incorrectly translated, and blocked. One workaround to this issue involves…

WordPress Multi-Site on Docker – How to Add Apache mod_headers to Solve CORS Issues and php File Size Limit
|

WordPress Multi-Site on Docker – How to Add Apache mod_headers to Solve CORS Issues and php File Size Limit

I’ve been using a WordPress Docker for some time now. My Docker is invoked through the docker-compose toolset, and it generally functions well. However, at times, specific configurations are needed. For instance, when adjusting the PHP file size limitation or adding mod_headers to address CORS issues on WordPress. The key is to override the Docker…