mirror of
https://github.com/Alfresco/SearchServices.git
synced 2025-09-24 14:31:29 +00:00
37 lines
1.2 KiB
Markdown
37 lines
1.2 KiB
Markdown
# About
|
|
|
|
This folder contains code for provisioning ACS with SearchServices or InsightEngine - for testing purposes.
|
|
|
|
# Content
|
|
|
|
```ruby
|
|
.
|
|
├── README.md
|
|
├── insight # INSIGHT ENGINE
|
|
│ ├── docker-compose.yml
|
|
│ └── upgrade
|
|
│ └── Makefile
|
|
└── search # SEARCH SERVICES
|
|
├── Makefile # main Makefile - inherited by all Makefiles bellow
|
|
├── backup
|
|
│ ├── Makefile
|
|
│ ├── README.md # start here if you want to test the backup
|
|
│ └── docker-compose.backup.yml
|
|
├── custom
|
|
│ ├── Dockerfile
|
|
│ ├── Makefile
|
|
│ ├── README.md # start here if you want to built/test a custom image
|
|
│ ├── docker-compose.custom.yml
|
|
│ └── spellcheck
|
|
│ └── enable-spellcheck.sh
|
|
├── docker-compose.yml
|
|
├── sharding
|
|
│ ├── Makefile
|
|
│ ├── README.md
|
|
│ └── docker-compose.sharding.yml
|
|
└── upgrade
|
|
├── Makefile
|
|
├── README.md
|
|
└── docker-compose.upgrade.yml
|
|
```
|