You can try to set available resources specificall...
# troubleshooting
d
You can try to set available resources specifically in docker-compose.yml like this:
Copy code
services:
  taskmanager:
    ...
    deploy:
      resources:
        limits:
          cpus: '2'
          memory: 2G
        reservations:
          cpus: '1'
          memory: 1G