Thanks for everyone who joined the webinar today!

As it was announced will start providing the access codes to sign up for the FHIRaaS on Thursday 14th of May! Learn more here.

Also @Anton Umnikov shared the example application that could use InterSystems FHIRaaS. Just change the base-url and provide your key to make it working with FHIRaaS.

Hi Utsavi!

There is no video on this (we probably should record one), but there is an article that describes how you can set up your own private registry for your company and publish packages on it. It's really easy cause the ZPM registry could be deployed as a ZPM package as well.

Also with ZPM proxy feature you can build a chain of registries, or use public packages in your private registry when you need that. Learn more here.

There is also a discord channel regarding ZPM, where you can chat with other developers who implemented private ZPM registries in their companies already. 

Hope this helps.

And we updated the images with ZPM 0.2.14 too:

intersystemsdc/iris-community:2021.1.0.205.0-zpm

intersystemsdc/iris-community:2020.4.0.547.0-zpm

intersystemsdc/irishealth-community:2021.1.0.205.0-zpm

intersystemsdc/irishealth-community:2020.4.0.547.0-zpm

And to launch IRIS do:

docker run --rm --name my-iris -d --publish 9091:1972 --publish 9092:52773 intersystemsdc/iris-community:2021.1.0.205.0-zpm

docker run --rm --name my-iris -d --publish 9091:1972 --publish 9092:52773 intersystemsdc/iris-community:2020.4.0.547.0-zpm

docker run --rm --name my-iris -d --publish 9091:1972 --publish 9092:52773 intersystemsdc/irishealth-community:2021.1.0.205.0-zpm

docker run --rm --name my-iris -d --publish 9091:1972 --publish 9092:52773 intersystemsdc/irishealth-community:2020.4.0.547.0-zpm

And for terminal do:

docker exec -it my-iris iris session IRIS

and to start the control panel:

http://localhost:9092/csp/sys/UtilHome.csp

To stop and destroy container do:

docker stop my-iris