You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# unzip the orchestration and move the unzipped directory
33
-
$ unzip cmem-orchestration.zip
34
-
$ rm cmem-orchestration.zip
35
-
$ mv cmem-orchestration-v* cmem-orchestration
36
-
$ cd cmem-orchestration
37
-
$ git init && git add . && git commit -m "stub"
33
+
unzip cmem-orchestration.zip
34
+
rm cmem-orchestration.zip
35
+
mv cmem-orchestration-v* cmem-orchestration
36
+
cd cmem-orchestration
37
+
git init && git add .&& git commit -m "stub"
38
38
```
39
39
40
40
Check your local environment:
41
41
42
-
```
42
+
```bash
43
43
# Run the following command to check your docker server version.
44
44
# To have the current security patches, always update your docker version
45
45
# to the latest one.
46
46
47
-
$ docker version | grep -i version
48
-
Version: 26.1.4
47
+
docker version | grep -i version
48
+
#Version: 26.1.4
49
49
50
50
# Check docker compose version, should be at least v2.*.*
51
51
# update to the latest version if necessary
52
52
53
-
$ docker compose version
54
-
Docker Compose version v2.29.1
53
+
docker compose version
54
+
#Docker Compose version v2.29.1
55
55
56
56
# login into eccenca docker registry
57
57
58
-
$ docker login docker-registry.eccenca.com
59
-
Username: yourusername
60
-
Password:
61
-
Login Succeeded
58
+
docker login docker-registry.eccenca.com
59
+
#Username: yourusername
60
+
#Password:
61
+
#Login Succeeded
62
62
```
63
63
64
64
## Installation
65
65
66
66
To install Corporate Memory, you need to modify your local hosts file (located in /etc/hosts), minimal configuration is as follows:
67
67
68
-
```
68
+
```bash
69
69
##
70
70
# Host Database
71
71
#
@@ -78,33 +78,33 @@ To install Corporate Memory, you need to modify your local hosts file (located i
78
78
79
79
Corporate Memory uses Ontotext GraphDB triple store as default backend. Graphdb is available as free version and does not requires a license. If you have a license for graphdb you can copy the file to the ```license```folder inside Corporate Memory's root folder.
Install the necessary software Inside the virtual machine and download the Corporate Memory orchestration from [releases.eccenca.com](http://releases.eccenca.com/):
0 commit comments