-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master'
# Conflicts: # composer.json
- Loading branch information
Showing
13 changed files
with
103 additions
and
34 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
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
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
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
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 |
---|---|---|
|
@@ -25,3 +25,6 @@ parameters: | |
cache_pool: "default" | ||
|
||
cache_host: 127.0.0.1 | ||
|
||
cache_memcached_port: 11211 | ||
cache_redis_port: 6379 |
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
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
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,18 +1,19 @@ | ||
#!/usr/bin/env sh | ||
|
||
# Update package info and selectively update docker-engine (and keep old travis specific config file) | ||
sudo apt-get update | ||
sudo apt-get --reinstall -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install docker-engine | ||
docker -v | ||
#disabled to save startup time as last travis image already have docker v1.12.0 | ||
#sudo apt-get update | ||
#sudo apt-get --reinstall -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install docker-engine | ||
#docker -v | ||
|
||
# If we need to pin it to a given version: | ||
# sudo apt-get --reinstall -y [...] install docker-engine=1.11.0-0~jessie | ||
# http://apt.dockerproject.org/repo/dists/debian-jessie/main/binary-amd64/Packages | ||
|
||
|
||
DOCKER_COMPOSE_VERSION="1.7.1" | ||
DOCKER_COMPOSE_VERSION="1.8.0" | ||
echo "\nUpdating Docker Compose to ${DOCKER_COMPOSE_VERSION}" | ||
sudo rm /usr/local/bin/docker-compose | ||
sudo rm -f /usr/local/bin/docker-compose | ||
curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose | ||
chmod +x docker-compose | ||
sudo mv docker-compose /usr/local/bin |
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
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
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
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
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,23 @@ | ||
version: '2' | ||
# Solr config, to be appended after base-prod or base-dev, ..., but before selenium.yml | ||
# | ||
# This service will migrate to use offical Solr image and use entrypoint once Solr bundle supports SOLR6+. | ||
# | ||
# NOTE: You'll need to manually reindex the solr index when booting this as we don't have entrypoint for solr yet. | ||
# (Unless you use ezplatform:install command which indexes for you) | ||
|
||
services: | ||
app: | ||
depends_on: | ||
- solr | ||
environment: | ||
- SEARCH_ENGINE=solr | ||
- SOLR_DSN=http://solr:8983/solr | ||
|
||
solr: | ||
image: makuk66/docker-solr:4.10.4 | ||
volumes_from: | ||
- app:ro | ||
environment: | ||
- EZ_SOLR_CONF="/var/www/vendor/ezsystems/ezplatform-solr-search-engine/lib/Resources/config/solr" | ||
command: /bin/bash -c "cp -R $${EZ_SOLR_CONF}/* /opt/solr/example/solr/collection1/conf/ && /opt/solr/bin/solr start -f" |