Install Docker On Ubuntu 18.04 Bionic Beaver Aim Install Docker production ready on Ubuntu 18.04 LTS Bionic Beaver AWS EC2 instance Requirements AWS EC2 Account Level Easy Introduction AWS and Docker have revolutionised how web applications are hosted and managed in the cloud and how they are developed and deployed to customers. Docker allows developers …
Category Archives: Docker
Docker Official PHP enable mod_rewrite
The official PHP & Apache container by default doesn’t have mod rewrite enabled. To enable this you would need to create your own Dockerfile, using the build “FROM php:xx” where xx is the container you need. Then add the following line to enable mod rewrite RUN a2enmod rewrite
Docker Official PHP container how to enable PDO
The Official PHP & Apache[1] container is a great starting point for a local development environment. One thing that might trip you up is if you try to install or run queries against a database. Out of the box, PDO drivers are not enabled. This will likely resort to the following errors: [PDOException] could not find …
Continue reading “Docker Official PHP container how to enable PDO”