Docker-Compose won't volume my php.ini file
I'm trying to use docker-compose to volume my php.ini file so I can make changes on the fly on my local machine to see how it affects the host machine. Unfortunately the only way I've been able to get the php.ini file into the container is directly during creation in the Dockerfile so far. Attached is an image of the container running fine with the current settings below. My Dockerfile is below: FROM ubuntu:14.04 MAINTAINER Joe Astrahan <jastrahan@poolservice.software> VOLUME ["/var/www"] RUN apt-get update && \ apt-get install -y software-properties-common && \ apt-get update && \ apt-get