Skip to content

Commit

Permalink
add ats to defualt group
Browse files Browse the repository at this point in the history
  • Loading branch information
pmacius committed Jul 23, 2024
1 parent 5100fe5 commit 51f60e7
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 1 deletion.
68 changes: 68 additions & 0 deletions ats/trouter/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# Runtime variables

Sets of variables configurable with your docker image

## trouter

```yaml

transform-router:
image: alfresco-transform-router:YOUR-TAG
environment:
JAVA_OPTS: >-
-XX:MinRAMPercentage=50
-XX:MaxRAMPercentage=80
ACTIVEMQ_URL: nio://activemq:61616
CORE_AIO_URL: http://transform-core-aio:8090
FILE_STORE_URL: http://shared-file-store:8099/alfresco/api/-default-/private/sfs/versions/1/file

```
- `JAVA_OPTS` - Additional java options
- `CORE_AIO_URL` - Transform Core AIO server, by default `http://elasticsearch:9200`
- `ACTIVEMQ_URL` - Alfresco ActiveMQ, by default `nio://activemq:61616`
- `FILE_STORE_URL` - Alfresco Shared FileStore endpoint, by default `http://shared-file-store:8099/alfresco/api/-default-/private/sfs/versions/1/file/`

## path

```yaml

live-indexing-path:
image: alfresco-elasticsearch-live-indexing-path:YOUR-TAG
environment:
SPRING_ELASTICSEARCH_REST_URIS: http://elasticsearch:9200
SPRING_ACTIVEMQ_BROKERURL: nio://activemq:61616

```

- `SPRING_ELASTICSEARCH_REST_URIS` - Elasticsearch server, by default `http://elasticsearch:9200`
- `SPRING_ACTIVEMQ_BROKERURL` - Alfresco ActiveMQ, by default `nio://activemq:61616`

## content

```yaml

live-indexing-content:
image: alfresco-elasticsearch-live-indexing-content:YOUR-TAG
environment:
SPRING_ELASTICSEARCH_REST_URIS: http://elasticsearch:9200
SPRING_ACTIVEMQ_BROKERURL: nio://activemq:61616
ALFRESCO_SHAREDFILESTORE_BASEURL: http://shared-file-store:8099/alfresco/api/-default-/private/sfs/versions/1/file

```

- `SPRING_ELASTICSEARCH_REST_URIS` - Elasticsearch server, by default `http://elasticsearch:9200`
- `SPRING_ACTIVEMQ_BROKERURL` - Alfresco ActiveMQ, by default `nio://activemq:61616`
- `ALFRESCO_SHAREDFILESTORE_BASEURL` - Alfresco Shared FileStore endpoint, by default `http://shared-file-store:8099/alfresco/api/-default-/private/sfs/versions/1/file/`

## all-in-one

```yaml

live-indexing:
image: alfresco-enterprise-search-aio:YOUR-TAG
environment:
SPRING_ELASTICSEARCH_REST_URIS: http://elasticsearch:9200
SPRING_ACTIVEMQ_BROKERURL: nio://activemq:61616
ALFRESCO_SHAREDFILESTORE_BASEURL: http://shared-file-store:8099/alfresco/api/-default-/private/sfs/versions/1/file/

```
6 changes: 5 additions & 1 deletion docker-bake.hcl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group "default" {
targets = ["content_service", "enterprise-search"]
targets = ["content_service", "enterprise-search", "ats"]
}

group "content_service" {
Expand All @@ -10,6 +10,10 @@ group "enterprise-search" {
targets = ["search_liveindexing"]
}

group "ats" {
targets = ["ats_trouter"]
}

variable "LABEL_VENDOR" {
default = "Hyland Software, Inc."
}
Expand Down

0 comments on commit 51f60e7

Please sign in to comment.