phpvms/docker-compose.local.yml
Andrew Roberts a5a21fb2fd
Fix missing colon on ./vendor volume (#1243)
docker up throwing error due to missing colon on the ./vendor folder
2021-06-11 08:46:37 -04:00

33 lines
982 B
YAML

#
# Run with either `make docker-test` or the following Docker command:
# docker-compose -f docker-compose.yml -f docker-compose.local.yml up
#
---
version: '3'
services:
# This is overriding the docker-compose.yaml file to have a localized version
# of the contianer that you can use for building/testing
app:
build:
context: .
environment:
DB_HOST: mysql
REDIS_HOST: redis
volumes:
- ./app:/var/www/app
- ./bootstrap:/var/www/bootstrap
- ./config:/var/www/config
- ./modules:/var/www/modules
- ./public:/var/www/public
- ./resources:/var/www/resources
- ./storage:/var/www/storage
- ./tests:/var/www/tests
- ./composer.json:/var/www/composer.json
- ./composer-lock.json:/var/www/composer-lock.json
- ./env.php:/var/www/env.php
- ./resources/docker/php/www.conf:/usr/local/etc/php-fpm.d/www.conf
- ./vendor:/var/www/vendor
depends_on:
- mysql
- redis