File tree 5 files changed +24
-13
lines changed 5 files changed +24
-13
lines changed Original file line number Diff line number Diff line change
1
+ export NEO4J_PORT=7687
2
+ export NEO4J_URL=bolt://localhost:${NEO4J_PORT}
3
+ export NEO4J_USER=neo4j
4
+ export NEO4J_PASS=DUMMYPASSWORD
5
+ export MONGO_HOST=localhost
6
+ export MONGO_USER=user
7
+ export MONGO_PW=DUMMYPASSWORD
8
+ export MONGO_PORT=27017
9
+ export MIN_PATH_LENGTH=5
10
+ export NEO4J_TRANSACTION_TIMEOUT=300
Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ services:
6
6
image : neo4j:4.4.3
7
7
ports : # expose the ports to the local machine
8
8
- " 7474:7474"
9
- - " 7687 :7687"
9
+ - " ${NEO4J_PORT} :7687"
10
10
environment :
11
- - NEO4J_AUTH=neo4j/DUMMYPASSWORD
11
+ - NEO4J_AUTH=${NEO4J_USER}/${NEO4J_PASS}
12
12
- NEO4J_apoc_export_file_enabled=true
13
13
- NEO4J_apoc_import_file_enabled=true
14
14
- NEO4J_apoc_import_file_use__neo4j__config=true
@@ -25,7 +25,7 @@ services:
25
25
mongo :
26
26
image : mongo:4.2
27
27
ports : # expose ports to the outside
28
- - " 27017 :27017"
28
+ - " ${MONGO_PORT} :27017"
29
29
volumes :
30
30
- ./2022_07_14_mongodb/:/data/db
31
31
environment :
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ services:
18
18
# creates the work messages
19
19
producer :
20
20
restart : always
21
- image : ghcr.io/anddann/upcy:1.6.1 -SNAPSHOT
21
+ image : ghcr.io/anddann/upcy:1.6.2 -SNAPSHOT
22
22
depends_on :
23
23
- rabbitmq
24
24
deploy :
@@ -40,7 +40,7 @@ services:
40
40
41
41
worker :
42
42
restart : always
43
- image : ghcr.io/anddann/upcy:1.6.1 -SNAPSHOT
43
+ image : ghcr.io/anddann/upcy:1.6.2 -SNAPSHOT
44
44
deploy :
45
45
replicas : 2
46
46
mode : replicated
Original file line number Diff line number Diff line change 6
6
7
7
<groupId >de.upb</groupId >
8
8
<artifactId >upcy</artifactId >
9
- <version >1.6.1 -SNAPSHOT</version >
9
+ <version >1.6.2 -SNAPSHOT</version >
10
10
11
11
<properties >
12
12
<docker .image.prefix>ghcr.io/anddann/</docker .image.prefix>
270
270
<dependency >
271
271
<groupId >de.upb.upcy.base</groupId >
272
272
<artifactId >sigtest-generator</artifactId >
273
- <version >0.5-SNAPSHOT</version >
273
+ <version >0.5.1 -SNAPSHOT</version >
274
274
</dependency >
275
275
<dependency >
276
276
<groupId >de.upb.upcy.base</groupId >
277
277
<artifactId >commons</artifactId >
278
- <version >0.5-SNAPSHOT</version >
278
+ <version >0.5.1 -SNAPSHOT</version >
279
279
</dependency >
280
280
281
281
<dependency >
Original file line number Diff line number Diff line change 1
1
RABBITMQ_HOST = rabbitmq
2
- NEO4J_URL = bolt://host.docker.internal:7687
3
- NEO4J_USER = neo4j
4
- NEO4J_PASS = DUMMYPASSWORD
2
+ NEO4J_URL = bolt://host.docker.internal:${ NEO4J_PORT }
3
+ NEO4J_USER = ${ NEO4J_USER }
4
+ NEO4J_PASS = ${ NEO4J_PASS }
5
5
RABBITMQ_USER = myuser
6
6
RABBITMQ_PASS = mypassword
7
7
# to use local folder start with file:/.....
8
8
FILESERVER_HOST = file:/mnt/results
9
9
FILESERVER_USER = myuser
10
10
FILESERVER_PASS = DUMMYPASSWORD
11
11
MONGO_HOST = host.docker.internal
12
- MONGO_USER = user
13
- MONGO_PW = DUMMYPASSWORD
12
+ MONGO_PORT = ${ MONGO_PORT }
13
+ MONGO_USER = ${ MONGO_USER }
14
+ MONGO_PW = ${ MONGO_PW }
14
15
TIMEOUT = 21600
15
16
NEO4J_TRANSACTION_TIMEOUT = 600
16
17
MIN_PATH_LENGTH = 5
You can’t perform that action at this time.
0 commit comments