Merge branch 'feature/SEARCH-542_Docker_Image' into 'develop'

SEARCH-542: Fixed an issue in the build script and updated SOLR URL in the readme file

See merge request !18
This commit is contained in:
Tuna Aksoy
2017-09-05 17:48:23 +01:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ mvn clean install
To build the docker image:
```
cd packaging/src/docker
docker build --build-arg solrUrl=http://download.alfresco.com/release/community/201701-build-00015/alfresco-search-services-1.0.b.zip -t search-services:myimage .
docker build --build-arg solrUrl=http://dl.alfresco.com/release/enterprise/SearchServices/1.1.0/alfresco-search-services-1.1.0.zip -t search-services:myimage .
```
### License
+1 -1
View File
@@ -23,7 +23,7 @@ docker run --rm "$dockerImage" grep -q LOG4J_CONFIG /opt/alfresco-search-service
docker run --rm "$dockerImage" [ -e /opt/alfresco-search-services/solrhome/conf/shared.properties ] || (echo "shared.properties does not exist" && exit 1)
docker run --rm "$dockerImage" /opt/alfresco-search-services/solr/bin/solr start
if [ "${nicebranch}" == "local" ]
if [ "${nicebranch}" = "local" ]
then
echo "Skipping docker publish for local build"
else