And if you will use CronMaker you can go with two following commands.

First to start Production every working morning:

USER>zw ##class(dc.cron.task).Start("Start Production","0 0 8 ? * MON-FRI *","##class(Ens.Director).StartProduction(""InsertNameOfYouPrduction"")",1,.taskId)

And to stop Production every working evening:

USER>zw ##class(dc.cron.task).Start("Start Production","0 0 8 ? * MON-FRI *
","##class(Ens.Director).StopProduction(60,0)",1,.taskId)

And we updated the images with ZPM 0.2.14 too:

intersystemsdc/iris-community:2021.1.0.215.0-zpm
intersystemsdc/iris-ml-community:2021.1.0.215.0-zpm
intersystemsdc/iris-community:2020.4.0.547.0-zpm
intersystemsdc/irishealth-community:2021.1.0.215.0-zpm
intersystemsdc/irishealth-ml-community:2021.1.0.215.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.215.0-zpm

docker run --rm --name my-iris -d --publish 9091:1972 --publish 9092:52773 intersystemsdc/iris-ml-community:2021.1.0.215.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.215.0-zpm

docker run --rm --name my-iris -d --publish 9091:1972 --publish 9092:52773 intersystemsdc/irishealth-ml-community:2021.1.0.215.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