From 101c20261574814ac7c5db017ee218578be1cc50 Mon Sep 17 00:00:00 2001 From: "Peter.Morton" Date: Wed, 18 Oct 2023 17:49:48 -0500 Subject: [PATCH] Added repeateable install instructions --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 2ec2c1a..3eb1ccb 100644 --- a/README.md +++ b/README.md @@ -31,3 +31,19 @@ npm run lint ### Customize configuration See [Configuration Reference](https://cli.vuejs.org/config/). + +## Running the services + +### Verint Repeatable Environments + +#### Install as a docker service + +```shell +mkdir -p /opt/em/projects/current/demo/eo-services +curl -o /opt/em/projects/current/demo/eo-services/docker-compose.yml https://git.mortons.site/verint.com/eo-services-client/raw/branch/main/examples/repeatable-docker-compose.yml +sudo curl -o /etc/systemd/system/eo-services.service https://git.mortons.site/verint.com/eo-services-client/raw/branch/main/examples/eo-services.service + +sudo systemctl daemon-reload +sudo systemctl enable eo-services +sudo systemctl start eo-services +```