Skip to content

Instantly share code, notes, and snippets.

View ben-albon's full-sized avatar

Ben Albon ben-albon

View GitHub Profile
@ben-albon
ben-albon / php5.6-pgsql.Dockerfile
Last active February 28, 2024 09:00
Docker PHP Image with PostgreSQL Driver
FROM php:5.6-apache
RUN apt-get update && apt-get install -y libpq-dev && docker-php-ext-install pdo pdo_pgsql
COPY src/ /var/www/html