GA Release of IRIS 2023.2
repository for baking zpm enabled images for InterSystems IRIS
The published images could be found at following Docker Repositories: InterSystems IRIS Community Edition InterSystems IRIS Community Edition for Health:
Current version of ZPM installed: 0.7.0
GA Release of IRIS 2023.2
Support of environment variables and initial scripts is introduced.
added support for environment variables to set username, password and namespace
if set IRIS_USERNAME
and user does not exists it will create, by default _SYSTEM
user is used
if set IRIS_PASSWORD
it will set password for IRIS_USERNAME
or for _SYSTEM
by default
if set IRIS_NAMESPACE
it will create the namespace, default is USER
Support of initialization scripts is introduced.
mount folder with scripts to /docker-entrypoint-initdb.d/
expected extensions sql
, sql.gz
and sh
sh file may contain shebang like this, will be executed in IRIS_NAMESPACE
#!/usr/bin/env iriscli
write !,"Hello"
zpm "install dsw"
sql file, will be executed in Python Embedded mode by irissqlcli
docker run -it \
-p 9090:52773
-e IRIS_PASSWORD=demo \
-e IRIS_USERNAME=demo \
-e IRIS_NAMESPACE=demo \
intersystemsdc/iris-community:latest
Will start IRIS with already defined user demo
with password demo
, and created namespace DEMO
Supports Docker secrets, too
Initial Release with tags:docker pull intersystemsdc/iris-community:2019.4.0.383.0-zpm-dev