Skip to content

Commit

Permalink
Merge branch 'master' of github.com:ezsystems/launchpad
Browse files Browse the repository at this point in the history
  • Loading branch information
Plopix committed Mar 24, 2018
2 parents cbe3062 + 515ff61 commit caf0fe3
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 1 deletion.
Binary file modified docs/ez.phar
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/ez.phar.version
@@ -1 +1 @@
91a16f593c652777ae82d14b9cd9247068bcfbc1 ez.phar
8e4cbf16b309c3cb5cf9ef251ba5ec8f2625f47f ez.phar
1 change: 1 addition & 0 deletions payload/dev/solr/entrypoint.bash
Expand Up @@ -5,6 +5,7 @@ if [ ! -f /ezsolr/server/ez/solr.xml ]; then
cp /opt/solr/server/solr/solr.xml /ezsolr/server/ez
cp /opt/solr/server/solr/configsets/basic_configs/conf/{currency.xml,solrconfig.xml,stopwords.txt,synonyms.txt,elevate.xml} /ezsolr/server/ez/template
sed -i.bak '/<updateRequestProcessorChain name="add-unknown-fields-to-the-schema">/,/<\/updateRequestProcessorChain>/d' /ezsolr/server/ez/template/solrconfig.xml
sed -i -e 's/<maxTime>${solr.autoSoftCommit.maxTime:-1}<\/maxTime>/<maxTime>${solr.autoSoftCommit.maxTime:20}<\/maxTime>/g' /ezsolr/server/ez/template/solrconfig.xml
fi

/opt/solr/bin/solr -s /ezsolr/server/ez -f
Expand Down
1 change: 1 addition & 0 deletions src/Core/Client/Docker.php
Expand Up @@ -328,6 +328,7 @@ public function getComposeEnvVariables()
'DOCKER_HOST' => getenv('DOCKER_HOST'),
'DOCKER_CERT_PATH' => getenv('DOCKER_CERT_PATH'),
'DOCKER_TLS_VERIFY' => getenv('DOCKER_TLS_VERIFY'),
'PATH' => getenv('PATH')
];
}

Expand Down
1 change: 1 addition & 0 deletions src/Core/Client/DockerSync.php
Expand Up @@ -136,6 +136,7 @@ public function getEnvVariables()
'PROVISIONINGFOLDERNAME' => $this->getProvisioningFolderName(),
'COMPOSEFILE' => $this->getComposeFileName(),
'HOME' => getenv('HOME'),
'PATH' => getenv('PATH')
];
}

Expand Down
1 change: 1 addition & 0 deletions tests/Tests/Unit/TestCase.php
Expand Up @@ -169,6 +169,7 @@ public function getDockerClientEnvironmentVariables()
'DOCKER_HOST' => getenv('DOCKER_HOST'),
'DOCKER_CERT_PATH' => getenv('DOCKER_CERT_PATH'),
'DOCKER_TLS_VERIFY' => getenv('DOCKER_TLS_VERIFY'),
'PATH' => getenv('PATH'),
];
}
}

0 comments on commit caf0fe3

Please sign in to comment.