-
Notifications
You must be signed in to change notification settings - Fork 19
/
docker-compose.yml
42 lines (42 loc) · 1.1 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
services:
iris:
build: .
restart: always
environment:
- TEST_REGISTRY=http://registry:52773/registry/
- TEST_REGISTRY_USER=admin
- TEST_REGISTRY_PASSWORD=SYS
ports:
- 52774:52773
volumes:
- ~/iris.key:/usr/irissys/mgr/iris.key
- ./:/home/irisowner/zpm/
command:
- -a
- iris session iris -U%SYS '##class(Security.Users).UnExpireUserPasswords("*")'
registry:
image: intersystemsdc/iris-community:preview
restart: always
ports:
- 52775:52773
environment:
- IRISPASSWORD=SYS
- IRISUSERNAME=admin
- IRISNAMESPACE=REGISTRY
volumes:
- ./scripts/setup-registry.sh:/docker-entrypoint-initdb.d/setup-registry.sh
sandbox:
build: ./tests/sandbox/
restart: always
ports:
- 52776:52773
environment:
- IRISPASSWORD=SYS
- IRISUSERNAME=admin
- IRISNAMESPACE=USER
volumes:
- ./:/home/irisowner/zpm/
- ./tests/sandbox/:/home/irisowner/sandbox/
command:
- -a
- iris session iris -U%SYS '##class(Security.Users).UnExpireUserPasswords("*")'