Skip to content

Commit 139e076

Browse files
committed
Remove relationship import from web_app
1 parent c6fb7b3 commit 139e076

File tree

5 files changed

+23
-1326
lines changed

5 files changed

+23
-1326
lines changed

docker-compose-remote.yml

+21-1
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,24 @@ services:
4242
MG_PASSWORD: "starlinkreadit"
4343
OPTICAL_FILE_PATH: "resources/latencies.csv"
4444
depends_on:
45-
- simulator
45+
- simulator
46+
redis:
47+
image: "redis"
48+
ports:
49+
- 6379:6379
50+
cache_handler:
51+
build:
52+
context: ./cache_handler
53+
volumes:
54+
- ./cache_handler:/app
55+
environment:
56+
MG_HOST: memgraph
57+
MG_PORT: 7687
58+
REDIS_HOST: redis
59+
REDIS_PORT: "6379"
60+
REDIS_PASSWORD: ""
61+
DB_FETCH_TIME: "0.1"
62+
command: python cache_handler.py
63+
depends_on:
64+
- redis
65+
- memgraph

docker-compose.yml

-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ services:
1010
image: "redis"
1111
ports:
1212
- 6379:6379
13-
volumes:
14-
- ./redis/redis.conf:/redis.conf
15-
command: [ "redis-server", "/redis.conf" ]
1613
cache_handler:
1714
build:
1815
context: ./cache_handler

0 commit comments

Comments
 (0)