In your Dockerfile you use: COPY var-www /var/www/ COPY apache /etc/apache2/ to copy the Files into your Dockerfile. Maybe it's better to use Volumes to link the Data of your Project-Dir to your Dockerfile: https://docs.docker.com/userguide/dockervolumes/ Using a Volume makes you able to access to the same Data from different Images at the same time.