File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ OCTOPOES_API=http://octopoes_api:80
3030BYTES_API=http://bytes:8000
3131XTDB_URI=http://crux:3000
3232XTDB_TYPE=xtdb
33+ SCHEDULER_API=http://scheduler:8000
3334
3435# Boefjes
3536WP_SCAN_API=
@@ -79,3 +80,4 @@ SCHEDULER_PQ_MAXSIZE=1000
7980SCHEDULER_PQ_INTERVAL=60
8081SCHEDULER_DSP_BROKER_URL=amqp://${RABBITMQ_DEFAULT_USER}:${RABBITMQ_DEFAULT_PASS}@rabbitmq:5672/${RABBITMQ_DEFAULT_VHOST}
8182SCHEDULER_RABBITMQ_DSN=amqp://${RABBITMQ_DEFAULT_USER}:${RABBITMQ_DEFAULT_PASS}@rabbitmq:5672/${RABBITMQ_DEFAULT_VHOST}
83+ SCHEDULER_DB_DSN=sqlite:///
Original file line number Diff line number Diff line change @@ -38,9 +38,15 @@ rebuild:
3838 make build
3939 make up
4040
41+ update :
42+ -docker-compose down
43+ make pull
44+ make build
45+ make up
46+
4147clean :
4248 -docker-compose down
43- -docker volume rm nl-kat_rocky-db-data nl-kat_bytes-db-data nl-kat_katalogus-db-data
49+ -docker volume rm nl-kat_rocky-db-data nl-kat_bytes-db-data nl-kat_katalogus-db-data nl-kat_xtdb-data
4450
4551up :
4652 docker-compose up -d --force-recreate rocky
@@ -90,7 +96,11 @@ pull-reset:
9096 -git -C nl-kat-rocky pull
9197
9298build : # Build should prepare all other services: migrate them, seed them, etc.
93- docker-compose build
99+ ifeq ($(UNAME ) , Darwin)
100+ docker-compose build --build-arg USER_UID="$$(id -u)"
101+ else
102+ docker-compose build --build-arg USER_UID="$$(id -u)" --build-arg USER_GID="$$(id -g)"
103+ endif
94104 docker-compose run --rm rocky make build
95105 make -C nl-kat-boefjes build
96106 make -C nl-kat-bytes build
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ version: "3.9"
33services :
44 rabbitmq :
55 restart : on-failure
6- image : " rabbitmq:3-management"
6+ image : " rabbitmq:3.9 -management"
77 ports :
88 - " 127.0.0.1:5672:5672"
99 - " 127.0.0.1:15672:15672"
@@ -15,10 +15,12 @@ services:
1515 - .env
1616
1717 crux :
18- image : juxt/xtdb-in-memory :1.20.0
18+ image : " juxt/xtdb-standalone-rocksdb :1.21.0 "
1919 restart : on-failure
2020 ports :
2121 - " 127.0.0.1:3000:3000"
22+ volumes :
23+ - xtdb-data:/usr/lib/xtdb/data
2224
2325 octopoes_api :
2426 restart : on-failure
@@ -202,3 +204,4 @@ volumes:
202204 rocky-db-data :
203205 bytes-db-data :
204206 katalogus-db-data :
207+ xtdb-data :
You can’t perform that action at this time.
0 commit comments