Skip to content

Instantly share code, notes, and snippets.

@matheusmota
Forked from ben-albon/php5.6-pgsql.Dockerfile
Last active September 6, 2018 20:14
Show Gist options
  • Save matheusmota/687022cdfbc816b822c90757a97dfbd4 to your computer and use it in GitHub Desktop.
Save matheusmota/687022cdfbc816b822c90757a97dfbd4 to your computer and use it in GitHub Desktop.
Docker PHP 7 Image with PostgreSQL Driver (pgsql)
FROM php:7.2.9-apache
RUN apt-get update && apt-get install -y libpq-dev && docker-php-ext-install pdo pdo_pgsql pgsql
COPY src/ /var/www/html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment