Skip to content
Open
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
6 changes: 5 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ services:

backend:
image: 'ghcr.io/project-chip/csa-certification-tool-backend:2ac562d'

ports:
- "8888:8888"
- "50000:50000"
Expand All @@ -100,6 +99,11 @@ services:
privileged: true
build:
context: ./backend
deploy:
resources:
limits:
cpus: '${BACKEND_CPU_LIMIT:-2.5}' # If no environment variables is provided, cap at 2.5 cores
memory: '${BACKEND_MEMORY_LIMIT:-2000M}' # If no environment variables is provided, cap at 2.0 GB
command: bash -c "./prestart.sh; python3 ./app/main.py"
labels:
- traefik.enable=true
Expand Down