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
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ start:
@echo "-> Start the Docker compose services in background"
${COMPOSE} up -d

stop:
@echo "-> Stop the Docker compose services"
${COMPOSE} stop

bash:
# Open a bash session in the running web container
${COMPOSE} exec web bash
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ x-description: "Full ScanCode.io stack: all services, local image build"

services:
db:
image: docker.io/library/postgres:17.10
image: docker.io/library/postgres:17.11
env_file:
- docker.env
volumes:
Expand All @@ -18,7 +18,7 @@ services:
retries: 5

redis:
image: docker.io/library/redis:8.8.0-alpine
image: docker.io/library/redis:8.10.1-alpine
# Enable redis data persistence using the "Append Only File" with the
# default policy of fsync every second. See https://redis.io/topics/persistence
command: redis-server --appendonly yes --loglevel warning
Expand Down Expand Up @@ -77,7 +77,7 @@ services:
condition: service_started

nginx:
image: docker.io/library/nginx:1.31.2-alpine
image: docker.io/library/nginx:1.31.4-alpine
ports:
- "${NGINX_PUBLISHED_HTTP_PORT:-80}:80"
- "${NGINX_PUBLISHED_HTTPS_PORT:-443}:443"
Expand All @@ -91,7 +91,7 @@ services:
restart: always

clamav:
image: docker.io/clamav/clamav:1.5.2_base
image: docker.io/clamav/clamav:1.5.4_base
volumes:
- clamav_data:/var/lib/clamav
- workspace:/var/scancodeio/workspace/
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ dependencies = [
"django-environ==0.14.0",
"django-crispy-forms==2.7",
"crispy-bootstrap3==2024.1",
"django-filter==25.2",
"djangorestframework==3.17.1",
"django-filter==26.1",
"djangorestframework==3.18.0",
"django-htmx==1.29.0",
"django-debug-toolbar==7.1.1",
# Database
Expand Down Expand Up @@ -115,6 +115,7 @@ dependencies = [
"croniter==6.2.4",
"lief==0.17.6",
"symbolic==13.8.0",
"Pygments==2.20.0",
"cffi==2.1.1",
"stevedore==5.9.0",
"sqlparse==0.6.0",
Expand Down
20 changes: 11 additions & 9 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading