AlfrescoArchive / alfresco-anaxes-hello-world-ui-deployment

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This project has now been Archived

Welcome

This project contains the artifacts to deploy the Hello World UI via Docker and Kubernetes.

The UI talks to the back-end service REST API to retrieve the welcome message to return.

Build Docker Image

To build the Docker image run the script which gets the app distribution artifact:

./build-prep.sh

then:

docker build -t anaxes-hello-world-ui .

Run Docker Image

You first need to run the Hello World service host. Assuming:

HELLO_BACKEND_URL=http://localhost/hello-service

You can then run the UI Docker image on port 8888:

docker run -p8888:80 -e HELLO_BACKEND_URL=$HELLO_BACKEND_URL --name hello-world-ui anaxes-hello-world-ui:latest

You should then be able to access the UI at:

http://localhost:8888

Helm

See helm/hello-world-ui

SSO demonstration

To demonstrate the Single Sign On capability of the Hello World App you need to configure the URL to Alfresco Content Services, Alfresco Process Services and Alfresco Identity Service. If you are using the Docker Image you can set those up using the following environmental variables: ACS_URL, APS_URL, IDENTITY_SERVICE_URL.

Component Can be accessed at Example of Usage
Alfresco Anaxes Hello World Service http://localhost/hello-service/welcome -e HELLO_BACKEND_URL=http://localhost/hello-service
Alfresco Content Services Repo https://localhost/alfresco -e ACS_URL=https://localhost/alfresco
Alfresco Process Services https://localhost/activiti-app -e APS_URL=https://localhost/activiti-app
Alfresco Identity Service https://localhost/auth -e IDENTITY_SERVICE_URL=https://localhost/auth

About

License:Apache License 2.0


Languages

Language:Shell 71.0%Language:Smarty 18.9%Language:Dockerfile 10.1%