Created
September 3, 2018 14:56
-
-
Save shakyShane/b1b0a4e0ecd7c4070ac20210dde027fe to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
nginx: | |
volumes: | |
- .docker/certs:/etc/letsencrypt | |
env_file: | |
- ./.docker/local.env | |
php: | |
env_file: | |
- .docker/local.env | |
volumes: | |
- ./composer.lock:/var/www/composer.lock | |
- ./composer.json:/var/www/composer.json | |
- ./app/design:/var/www/app/design | |
- ./app/code:/var/www/app/code | |
- ./pub/media/wysiwyg:/var/www/pub/media/wysiwyg | |
+ - /Users/shaneobsourne/Downloads/catalog:/var/www/pub/media/catalog | |
db: | |
env_file: | |
- ./.docker/local.env | |
volumes: | |
- .docker/db/:/docker-entrypoint-initdb.d/ | |
rabbitmq: | |
env_file: | |
- ./.docker/local.env | |
mail: | |
container_name: simmi-m2-mail | |
image: mailhog/mailhog | |
ports: | |
- 1025 | |
- 8025:8025 | |
blackfire: | |
container_name: simmi-m2-blackfire | |
image: blackfire/blackfire | |
env_file: | |
- .docker/local.env |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment