-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(all): split compose file for full vs. partial sync of M2 files
- Loading branch information
1 parent
e420246
commit 18a684f
Showing
3 changed files
with
23 additions
and
16 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
##### | ||
########################################################################## | ||
# Docker Compose Environment Variables | ||
# See https://docs.docker.com/compose/env-file/ | ||
##### | ||
########### | ||
|
||
#### | ||
########################################################################## | ||
# Docker Compose Project Name | ||
# See https://docs.docker.com/compose/reference/envvars/#compose_project_name | ||
#### | ||
########### | ||
COMPOSE_PROJECT_NAME=YOUR_PROJECT_NAME | ||
|
||
#### | ||
########################################################################## | ||
# Docker Compose File | ||
# See https://docs.docker.com/compose/reference/envvars/#compose_file | ||
#### | ||
# Mac And Linux | ||
#COMPOSE_FILE=docker-compose.yml:docker-compose.dev.yml | ||
# Windows | ||
#COMPOSE_FILE=docker-compose.yml;docker-compose.dev.yml | ||
########### | ||
# Mac and Native Windows | ||
# COMPOSE_FILE=docker-compose.yml:docker-compose.partialsync.yml | ||
|
||
# Windows (WSL) and Linux | ||
# COMPOSE_FILE=docker-compose.yml:docker-compose.fullsync.yml |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
version : '3' | ||
|
||
services: | ||
magento2: | ||
image: graycore/magento-php:7.2-fpm-alpine-develop | ||
volumes: &appvolumes | ||
- ~/.composer:/var/www/.composer:delegated | ||
- ../:/var/www/html/:cached | ||
ingress: | ||
volumes: *appvolumes | ||
volumes: | ||
appdata: |
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