-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OPSEXP-2726 Add T-Engine Tika image Dockerfile (#18)
- Loading branch information
Showing
11 changed files
with
118 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,5 @@ dist | |
*.jar | ||
*.rpm | ||
*.gz | ||
|
||
*.tgz | ||
test/helm/enterprise-integration-test-values.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/bash | ||
|
||
exec java $JAVA_OPTS $JAVA_OPTS_CONTAINER_FLAGS -jar /usr/bin/app.jar | ||
exec java $JAVA_OPTS $JAVA_OPTS_CONTAINER_FLAGS -jar /opt/app.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
FROM java_base | ||
|
||
ENV JAVA_OPTS_CONTAINER_FLAGS=-XX:MaxRAMPercentage=80 | ||
ENV TIKA_COMMON_PATH=tengine/tika | ||
ENV TIKA_DEP_RPM_URL=https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm | ||
|
||
EXPOSE 8090 | ||
|
||
ARG ALFRESCO_TIKA_GROUP_NAME | ||
ARG ALFRESCO_TIKA_GROUP_ID | ||
ARG ALFRESCO_TIKA_USER_NAME | ||
ARG ALFRESCO_TIKA_USER_ID | ||
|
||
RUN yum install -y ${TIKA_DEP_RPM_URL} && \ | ||
yum -y install perl-Image-ExifTool && \ | ||
yum clean all | ||
|
||
ADD ${TIKA_COMMON_PATH}/alfresco-transform-tika*.jar /opt/app.jar | ||
|
||
RUN groupadd -g ${ALFRESCO_TIKA_GROUP_ID} ${ALFRESCO_TIKA_GROUP_NAME} && \ | ||
useradd -u ${ALFRESCO_TIKA_USER_ID} -g ${ALFRESCO_TIKA_GROUP_NAME} ${ALFRESCO_TIKA_USER_NAME} && \ | ||
chgrp ${ALFRESCO_TIKA_GROUP_NAME} /opt/app.jar | ||
|
||
USER ${ALFRESCO_TIKA_USER_NAME} | ||
|
||
HEALTHCHECK --interval=20s --timeout=10s --retries=3 --start-period=30s \ | ||
CMD curl -f http://localhost:8090/live || exit 1 | ||
|
||
COPY ${TIKA_COMMON_PATH}/entrypoint.sh /entrypoint.sh | ||
CMD ["/entrypoint.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Runtime variables | ||
|
||
Sets of variables configurable with your docker image | ||
|
||
## tika | ||
|
||
```yaml | ||
|
||
transform-core-tika: | ||
image: localhost/alfresco-tika:YOUR-TAG | ||
environment: | ||
JAVA_OPTS: | ||
ACTIVEMQ_URL: nio://activemq:61616 | ||
ACTIVEMQ_USER: admin | ||
ACTIVEMQ_PASSWORD: admin | ||
FILE_STORE_URL: http://shared-file-store:8099/alfresco/api/-default-/private/sfs/versions/1/file | ||
|
||
``` | ||
|
||
- `JAVA_OPTS` - Additional java options | ||
- `ACTIVEMQ_URL` - The URL for Alfresco ActiveMQ. | ||
- `FILE_STORE_URL` - Alfresco Shared FileStore endpoint. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"artifacts": { | ||
"acs23": [ | ||
{ | ||
"name": "alfresco-transform-tika", | ||
"version": "5.1.3", | ||
"path": "tengine/tika", | ||
"classifier": ".jar", | ||
"repository": "releases", | ||
"group": "org.alfresco" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/bin/bash | ||
exec java $JAVA_OPTS $JAVA_OPTS_CONTAINER_FLAGS -jar /opt/app.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters