瀏覽代碼

explicitly specifying Solr version in Docker Compose

solr_update
Simon Bowie 2 年之前
父節點
當前提交
4a9bc2ce1e
共有 3 個文件被更改,包括 4 次插入4 次删除
  1. +1
    -1
      docker-compose.prod.yml
  2. +1
    -1
      docker-compose.yml
  3. +2
    -2
      solr_import.sh

+ 1
- 1
docker-compose.prod.yml 查看文件

@@ -26,7 +26,7 @@ services:

solr:
container_name: solr
image: solr:latest
image: solr:8.11.1
ports:
- '8983:8983'
volumes:

+ 1
- 1
docker-compose.yml 查看文件

@@ -14,7 +14,7 @@ services:

solr:
container_name: solr
image: solr:latest
image: solr:8.11.1
ports:
- '8983:8983'
volumes:

+ 2
- 2
solr_import.sh 查看文件

@@ -55,12 +55,12 @@ Import()

sleep 30

docker run --rm -v "$directory/$location:/$core" --network=host solr:latest post -c $core /$core
docker run --rm -v "$directory/$location:/$core" --network=host solr:8.11.1 post -c $core /$core
}

Import_recursive()
{
docker run --rm -v "$directory/$subdirectory:/$core" --network=host solr:latest post -c $core /$core
docker run --rm -v "$directory/$subdirectory:/$core" --network=host solr:8.11.1 post -c $core /$core
}
############################################################
############################################################

Loading…
取消
儲存