go to post Evgeny Shvarov · Jun 6, 2022 Hi @Craig.Regester! This is great! Please submit the app with the ZPM option on OEx to make it available for everyone!
go to post Evgeny Shvarov · Jun 6, 2022 Also to stay up-to-date with InterSystems containers repository images I recommend taking a look at this remarkable free extension to Docker Desktop by @Dmitry Maslennikov he contributed to the community:
go to post Evgeny Shvarov · Jun 6, 2022 And images with ZPM package manager 0.3.2 are available accordingly: intersystemsdc/iris-community:2022.1.0.209.0-zpm intersystemsdc/irishealth-community:2022.1.0.209.0-zpm intersystemsdc/irishealth-ml-community:2022.1.0.209.0-zpm intersystemsdc/irishealth-community:2022.1.0.209.0-zpm intersystemsdc/iris-community:2021.2.0.651.0-zpm intersystemsdc/iris-ml-community:2021.2.0.651.0-zpm intersystemsdc/irishealth-community:2021.2.0.651.0-zpm intersystemsdc/irishealth-ml-community:2021.2.0.651.0-zpm And to launch IRIS do: docker run --rm --name my-iris -d --publish 9091:1972 --publish 9092:52773 intersystemsdc/iris-community:2022.1.0.209.0-zpm docker run --rm --name my-iris -d --publish 9091:1972 --publish 9092:52773 intersystemsdc/iris-ml-community:2022.1.0.209.0-zpm docker run --rm --name my-iris -d --publish 9091:1972 --publish 9092:52773 intersystemsdc/iris-community:2022.1.0.209.0-zpm docker run --rm --name my-iris -d --publish 9091:1972 --publish 9092:52773 intersystemsdc/irishealth-community:2022.1.0.209.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 And the FROM clause in dockerfile can look like this: FROM intersystemsdc/iris-community:2022.1.0.209.0-zpm Or to take the latest image: FROM intersystemsdc/iris-community So if you are on the latest image already just rebuild the repository to get the latest IRIS production image with ZPM onboard.
go to post Evgeny Shvarov · Jun 6, 2022 Previously we had irishealth-ml images too, e.g. containers.intersystems.com/intersystems/irishealth-ml:2021.2.0.651.0 What about this brunch of images?
go to post Evgeny Shvarov · Jun 6, 2022 What about InterSystems images on the DockerHub? Will they be published there too?
go to post Evgeny Shvarov · Jun 6, 2022 What about previous images in containers.intersystems.com? It seems they are gone?
go to post Evgeny Shvarov · Jun 2, 2022 And you can vote for it and other apps in the programming contest that is going on now on Open Exchange.
go to post Evgeny Shvarov · May 28, 2022 Or execute the line: set $namespace="%SYS", name="DefaultSSL" do:'##class(Security.SSLConfigs).Exists(name) ##class(Security.SSLConfigs).Create(name)
go to post Evgeny Shvarov · May 28, 2022 Hi Ankur! if you need ssl client just do: USER>zpm install “ssl-client”
go to post Evgeny Shvarov · May 24, 2022 Thanks @Dmitry Maslennikov ! This line will help to install docker-ls on Mac: brew install docker-ls And this line helps to see the community images available now: docker-ls tags --registry https://containers.intersystems.com intersystems/iris-community And this command shows available IRIS Community tags on Docker Hub: docker-ls tags intersystems/iris-community requesting list . done repository: intersystems/iris-community tags: - 2021.1.0.215.3 - 2021.2.0.617.0 - 2021.2.0.651.0 - 2022.1.0.114.0 - 2022.1.0.131.0 - 2022.1.0.164.0 - 2022.1.0.172.0 - 2022.1.0.191.0 - 2022.1.0.199.0
go to post Evgeny Shvarov · May 20, 2022 No, you are expected to come in person! We are looking forward to our first in-person summit in 2019! You can redeem free registration and accommodation if you have enough points in Global Masters.
go to post Evgeny Shvarov · May 20, 2022 And here is the portal where you can start using the FHIR accelerator.
go to post Evgeny Shvarov · May 18, 2022 Hi @John Murray ! Yes, changed the contest to demo, now it can be used too. The only piece you need to make your project deployed as a demo is to add this file to your repo. And the docker image name is matching with the repo name - so change the name in the document to your repo here and the line below.
go to post Evgeny Shvarov · May 18, 2022 Like it! So it means that the dev environment of Python/Java/C#/Whatever goes with the repo! Great feature! What about my favorite VSCode plugins? Can it be there too "automatically"? Where can (if can) setup it?
go to post Evgeny Shvarov · May 18, 2022 I see. Do you mean if a developer wants to use VSCode outside the container he/she needs to install certain versions of python/java/c# e.g. to run/debug it from VSCode?
go to post Evgeny Shvarov · May 17, 2022 Thanks @Robert Cemper! It’s a teamwork indeed! And I’m glad that community gets the value in the service - seeing HOW it works in a demo saves a lot of time for developers if the app does what they are looking for and it’s increases the quality of the app obviously by the fact that it just works! 80 demos! It’s a lot! Thanks to all the developers!
go to post Evgeny Shvarov · May 16, 2022 @Paul Hurley , thanks for the feedback!Developers! Please, provide more reviews if you like/dislike the tool, thanks in advance!
go to post Evgeny Shvarov · May 14, 2022 Thanks @Lucas Enard ! This is a really helpful sample! Just tried vs my FHIR deployment - works like a charm! I didn't get through the advantage of having VSCode inside the container? Can't I do the same mapping source folder using volumes in docker-compose? Also, is it possible to VSCode inside a container with IRIS? e.g. if I want to build something using Embedded Python?