Skip to content

Commit 16847db

Browse files
committed
update docker compose
1 parent 9925915 commit 16847db

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

docker-compose.dev.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ services:
4242
- source: ./databases/orientdb/backup
4343
target: /orientdb/backup
4444
type: bind
45+
user: "${UID}:${GID}"
4546
graphkb_api:
4647
image: bcgsc/pori-graphkb-api:latest
4748
ports:
@@ -139,7 +140,7 @@ services:
139140
image: bcgsc/pori-ipr-api:latest
140141
command: npm start
141142
ports:
142-
- 8081:8080
143+
- 8082:8082
143144
environment:
144145
IPR_DATABASE_HOSTNAME: ipr_db
145146
IPR_DATABASE_NAME: ipr_demo
@@ -176,7 +177,7 @@ services:
176177
environment:
177178
KEYCLOAK_REALM: PORI
178179
# customize settings below
179-
API_BASE_URL: http://localhost:8081/api
180+
API_BASE_URL: http://localhost:8082/api
180181
GRAPHKB_URL: http://localhost:5000
181182
KEYCLOAK_URL: http://localhost:8888/auth
182183
PUBLIC_PATH: /

docker-compose.prod.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ services:
1818
target: /orientdb/backup
1919
type: bind
2020
graphkb_api:
21-
image: bcgsc/pori-graphkb-api:v3.13.3
21+
image: bcgsc/pori-graphkb-api:v3.15.2
2222
ports:
2323
- 8080:8080
2424
environment:
@@ -48,7 +48,7 @@ services:
4848
timeout: 10s
4949
retries: 5
5050
graphkb_client:
51-
image: bcgsc/pori-graphkb-client:v4.2.2
51+
image: bcgsc/pori-graphkb-client:v4.3.2
5252
environment:
5353
KEYCLOAK_REALM: PORI
5454
KEYCLOAK_CLIENT_ID: GraphKB
@@ -65,7 +65,7 @@ services:
6565
- app-network
6666
restart: always
6767
ipr_db:
68-
image: bcgsc/pori-ipr-demodb:v7.2.1
68+
image: bcgsc/pori-ipr-demodb:v8.2.0
6969
restart: always
7070
environment:
7171
DATABASE_NAME: ipr_demo
@@ -107,7 +107,7 @@ services:
107107
- app-network
108108
restart: always
109109
ipr_api:
110-
image: bcgsc/pori-ipr-api:v7.2.1
110+
image: bcgsc/pori-ipr-api:v8.2.0
111111
ports:
112112
- 8081:8080
113113
environment:
@@ -141,7 +141,7 @@ services:
141141
timeout: 10s
142142
retries: 5
143143
ipr_client:
144-
image: bcgsc/pori-ipr-client:v6.6.3
144+
image: bcgsc/pori-ipr-client:v7.1.0
145145
environment:
146146
KEYCLOAK_REALM: PORI
147147
# customize settings below

docs/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Most of the servers are auto-started together with docker-compose but the keyclo
99

1010
If this is not your first time setting up or running these instructions see the [update instructions](#updating-an-existing-demo-install) instead
1111

12-
Start by cloning this repository which contains the default docker compose configs (`docker-compose.yml` and `docker-compose.dev.yml`)
12+
Start by cloning this repository which contains the default docker compose configs (`docker-compose.dev.yml`)
1313

1414
```bash
1515
git clone https://github.com/bcgsc/pori.git
@@ -53,7 +53,7 @@ mkdir keys
5353
Next, use docker-compose to start the DB, API, and client servers. The paths/URLs in the docker-compose.yml file should be adjusted to match your deployment. In our demo deployment we have a proxy pass set up from the configured ports to handle the https layer
5454

5555
```bash
56-
docker-compose -f docker-compose.dev.yml up -d --build --remove-orphans
56+
docker compose -f docker-compose.dev.yml up -d --build --remove-orphans
5757
```
5858

5959
This will start the following services

0 commit comments

Comments
 (0)