Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env_template
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ COMPOSE_FILE=docker/default.yml:docker/local.override.yml
#COMPOSE_FILE=docker/default.yml:docker/local.override.yml:docker/elasticsearch.yml

# If you want to run a specific version, populate this
# REACT_APP_INTELOWL_VERSION="3.0.0"
# REACT_APP_INTELOWL_VERSION="3.0.1"
2 changes: 1 addition & 1 deletion docker/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
REACT_APP_GREEDYBEAR_VERSION="3.0.0"
REACT_APP_GREEDYBEAR_VERSION="3.0.1"
5 changes: 4 additions & 1 deletion docker/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,16 @@ services:
postgres:
image: library/postgres:18-alpine
container_name: greedybear_postgres
restart: unless-stopped
volumes:
- postgres_data:/var/lib/postgresql/data/
- postgres_data:/var/lib/postgresql
env_file:
- ./env_file_postgres

uwsgi:
image: intelowlproject/greedybear:prod
container_name: greedybear_uwsgi
restart: unless-stopped
volumes:
- ../configuration/uwsgi/greedybear.ini:/etc/uwsgi/sites/greedybear.ini
- generic_logs:/var/log/greedybear
Expand Down Expand Up @@ -46,6 +48,7 @@ services:
rabbitmq:
image: library/rabbitmq:4-alpine
container_name: greedybear_rabbitmq
restart: unless-stopped
volumes:
- ../configuration/rabbitmq.conf:/etc/rabbitmq/rabbitmq.conf
logging:
Expand Down
4 changes: 2 additions & 2 deletions requirements/project-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ celery==5.6.2
# if you change this, update the documentation
elasticsearch==9.2.1

Django==5.2.10
Django==5.2.11
djangorestframework==3.16.1
django-rest-email-auth==5.0.0
django-ses==4.6.0
Expand All @@ -19,5 +19,5 @@ uwsgi==2.0.31
joblib==1.5.3
pandas==3.0.0
scikit-learn==1.8.0
numpy==2.4.1
numpy==2.4.2
datasketch==1.9.0
Loading