Skip to content

Commit 8e63f5e

Browse files
authored
Merge pull request #5 from rcemper/master
fix docker for expired versions
2 parents 4c94a94 + 50caf43 commit 8e63f5e

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ ARG IMAGE=intersystems/iris:2019.1.0S.111.0
22
ARG IMAGE=store/intersystems/irishealth:2019.3.0.308.0-community
33
ARG IMAGE=store/intersystems/iris-community:2019.3.0.309.0
44
ARG IMAGE=store/intersystems/iris-community:2019.4.0.379.0
5+
ARG IMAGE=intersystemsdc/iris-community
56
FROM $IMAGE
67

78
USER root
@@ -22,4 +23,4 @@ RUN \
2223

2324
# bringing the standard shell back
2425
SHELL ["/bin/bash", "-c"]
25-
CMD [ "-l", "/usr/irissys/mgr/messages.log" ]
26+
CMD [ "-l", "/usr/irissys/mgr/messages.log" ]

docker-compose.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1-
version: '3.6'
1+
version: '3.6'
22
services:
33
iris:
44
build:
55
context: .
66
dockerfile: Dockerfile
77
restart: always
8+
command: --ISCAgent false
89
ports:
9-
- 51773
10-
- 52773
10+
# - 51771
11+
- 1972:1972
12+
- 52773:52773
1113
- 53773
1214
volumes:
13-
- ~/iris.key:/usr/irissys/mgr/iris.key
14-
- ./:/irisdev/app
15+
# - ~/iris.key:/usr/irissys/mgr/iris.key
16+
- ./:/irisdev/app

0 commit comments

Comments
 (0)