mirror of
https://github.com/Alfresco/SearchServices.git
synced 2026-09-16 18:12:56 +00:00
17 lines
428 B
YAML
17 lines
428 B
YAML
version: "3"
|
|
# This is the docker compose for Alfresco Benchmark Manager
|
|
|
|
services:
|
|
alfresco-bm-manager:
|
|
image: quay.io/alfresco/alfresco-bm-manager:${ALFRESCO_BM_MANAGER_TAG}
|
|
environment:
|
|
JAVA_OPTS : "
|
|
-Dmongo.config.host=mongo
|
|
"
|
|
ports:
|
|
- 9080:9080
|
|
|
|
mongo:
|
|
image: mongo:${MONGO_TAG}
|
|
ports:
|
|
- ${MONGO_PORT}:27017 |