Basic setup of ENSDEMO content into InterSystems IRIS for Health.
Version: store/intersystems/irishealth-community:2019.4.0.383.0
Make sure you have Docker up and running before starting.
Clone the repository to your desired directory
git clone https://github.com/OneLastTry/irishealth-ensdemo.git
Once the repository is cloned, execute:
Always make sure you are inside the main directory to execute docker-compose commands.
docker-compose build
After building the image you can simply execute below and you be up and running 🚀:
-d will run the container detached of your command line session
docker-compose up -d
You can now access the manager portal through http://localhost:9092/csp/sys/%25CSP.Portal.Home.zen
To start a terminal session execute:
docker exec -it ensdemo iris session iris
To start a bash session execute:
docker exec -it ensdemo /bin/bash
Using InterSystems ObjectScript Visual Studio Code extension, you can access the code straight from vscode
docker-compose stop