Skip to content

Commit 96b780a

Browse files
committed
dev: pin images
1 parent e40f317 commit 96b780a

5 files changed

Lines changed: 6 additions & 12 deletions

File tree

docker-compose/README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,5 @@ response = requests.get("http://auth-service:8080/login", auth=HTTPBasicAuth('us
6666
print(response.json())
6767
```
6868

69-
## Potential Errors
70-
71-
You may see an error related to the `store-service` such that it doesn't start up (we believe this is due to issues with docker on m1/m2 mac). If this happens, the `store-service` is optional and can be taken out entirely. To remove it, remove the following lines and restart the compose:
72-
73-
- `FLEXO_MMS_STORE_SERVICE_URL=http://store-service:8080/store` in env/flexo-mms-layer1.env (env/flexo-mms-layer1-graphdb.env if using GraphDB)
74-
75-
- `store-service` under `depends_on:` in the docker-compose.yml file for layer1-service
76-
7769
## Shutdown
7870
`Ctrl-C` from the terminal and run `docker-compose down` once all containers are shut down. (`docker-compose -f docker-compose-graphdb.yml down` for GraphDB)

docker-compose/docker-compose-graphdb.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ services:
5353
- 8082:8080
5454

5555
store-service:
56-
image: openmbee/flexo-mms-store-service:develop-SNAPSHOT
56+
image: openmbee/flexo-mms-store-service:v0.2.0-pre.0
5757
hostname: store-service
5858
container_name: store-service
5959
env_file:
@@ -65,7 +65,7 @@ services:
6565
- 8081:8080
6666

6767
layer1-service:
68-
image: openmbee/flexo-mms-layer1-service:develop-SNAPSHOT
68+
image: openmbee/flexo-mms-layer1-service:v0.2.0-pre.3
6969
hostname: layer1-service
7070
container_name: layer1-service
7171
env_file:

docker-compose/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ services:
5555
- 8082:8080
5656

5757
store-service:
58-
image: openmbee/flexo-mms-store-service:develop-SNAPSHOT
58+
image: openmbee/flexo-mms-store-service:v0.2.0-pre.0
5959
hostname: store-service
6060
container_name: store-service
6161
env_file:
@@ -67,7 +67,7 @@ services:
6767
- 8081:8080
6868

6969
layer1-service:
70-
image: openmbee/flexo-mms-layer1-service:develop-SNAPSHOT
70+
image: openmbee/flexo-mms-layer1-service:v0.2.0-pre.3
7171
hostname: layer1-service
7272
container_name: layer1-service
7373
env_file:

docker-compose/env/flexo-mms-layer1-graphdb.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ FLEXO_MMS_STORE_SERVICE_URL=http://store-service:8080/store
33
FLEXO_MMS_QUERY_URL=http://quad-server:7200/repositories/openmbee
44
FLEXO_MMS_UPDATE_URL=http://quad-server:7200/repositories/openmbee/statements
55
FLEXO_MMS_GRAPH_STORE_PROTOCOL_URL=http://quad-server:7200/repositories/openmbee/rdf-graphs/service
6+
FLEXO_MMS_ARTIFACT_USE_STORE=true

docker-compose/env/flexo-mms-layer1.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ FLEXO_MMS_STORE_SERVICE_URL=http://store-service:8080/store
33
FLEXO_MMS_QUERY_URL=http://quad-server:3030/ds/sparql
44
FLEXO_MMS_UPDATE_URL=http://quad-server:3030/ds/update
55
FLEXO_MMS_GRAPH_STORE_PROTOCOL_URL=http://quad-server:3030/ds/data
6+
FLEXO_MMS_ARTIFACT_USE_STORE=true

0 commit comments

Comments
 (0)