Skip to content

Instantly share code, notes, and snippets.

@r1w1s1
Forked from ben-albon/php5.6-pgsql.Dockerfile
Created June 8, 2018 17:14
Show Gist options
  • Save r1w1s1/f29348d7f3b220467acffe2c3f420734 to your computer and use it in GitHub Desktop.
Save r1w1s1/f29348d7f3b220467acffe2c3f420734 to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment