Skip to content

Commit 4b014dd

Browse files
committed
minor fixes and clean up
1 parent 5ffbbcd commit 4b014dd

File tree

4 files changed

+31
-6
lines changed

4 files changed

+31
-6
lines changed

.vscode/settings.json

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,27 @@
66
},
77
"objectscript.conn" :{
88
"ns": "IRISAPP",
9-
"active": true,
109
"username":"_SYSTEM",
1110
"password": "SYS",
1211
"docker-compose": {
1312
"service": "iris",
1413
"internalPort": 52773
1514
}
16-
}
15+
},
16+
"sqltools.connections": [
17+
{
18+
"namespace": "IRISAPP",
19+
"connectionMethod": "Server and Port",
20+
"showSystem": false,
21+
"previewLimit": 50,
22+
"server": "localhost",
23+
"port": 32770,
24+
"askForPassword": false,
25+
"driver": "InterSystems IRIS",
26+
"name": "objectscript-docker",
27+
"username": "_SYSTEM",
28+
"password": "SYS"
29+
}
30+
]
1731

1832
}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
ARG IMAGE=store/intersystems/iris-community:2020.1.0.204.0
22
ARG IMAGE=intersystemsdc/iris-community:2020.1.0.209.0-zpm
33
ARG IMAGE=intersystemsdc/iris-community:2020.2.0.204.0-zpm
4-
ARG IMAGE=intersystemsdc/iris-community:2020.3.0.200.0-zpm
54
ARG IMAGE=intersystemsdc/irishealth-community:2020.3.0.200.0-zpm
5+
ARG IMAGE=intersystemsdc/iris-community:2020.3.0.200.0-zpm
66
FROM $IMAGE
77

88
USER root

dev.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# useful commands
2+
## clean up docker
3+
```
4+
docker system prune -f
5+
```
6+
27
## build container with no cache
38
```
49
docker-compose build --no-cache
@@ -8,8 +13,7 @@ docker-compose build --no-cache
813
docker-compose up -d
914
```
1015

11-
12-
## open terminal to docker
16+
## open iris terminal in docker
1317
```
1418
docker-compose exec iris iris session iris -U IRISAPP
1519
```
@@ -22,4 +26,12 @@ sudo chmod +x /usr/local/bin/docker-compose
2226
2327
```
2428

29+
## select zpm test registry
30+
```
31+
repo -n registry -r -url https://test.pm.community.intersystems.com/registry/ -user test -pass PassWord42
32+
```
2533

34+
## get back to public zpm registry
35+
```
36+
repo -r -n registry -url https://pm.community.intersystems.com/
37+
```

docker-compose.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,4 @@ services:
1010
- 52773
1111
- 53773
1212
volumes:
13-
- ~/iris.key:/usr/irissys/mgr/iris.key
1413
- ./:/irisdev/app

0 commit comments

Comments
 (0)