Skip to content

Troubleshooting

Michaël Bontyes edited this page May 23, 2025 · 7 revisions

FormGen error message - '<' not supported between instances of 'int' and 'str'

Screenshot 2025-05-23 at 5 09 36 PM Removing optionSet from that specific form solves the issue. **Cause** Int are not supported as optionSet answers: Screenshot 2025-05-23 at 5 19 18 PM

Solution
Adding integer support for optionSet answers in FormGen

Docker project shorthand -p error

Screenshot 2025-04-24 at 2 44 15 PM

Solution
Upgrade Docker and Docker Compose on the VM ` sudo apt update sudo apt install -y ca-certificates curl gnupg lsb-release

sudo install -m 0755 -d /etc/apt/keyrings curl -fsSL https://download.docker.com/linux/ubuntu/gpg |
sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg

echo
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg]
https://download.docker.com/linux/ubuntu
$(lsb_release -cs) stable" |
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null sudo apt update sudo apt install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin `

Docker MySQL Container not running because of port conflict 3306 already used

Screenshot 2025-04-24 at 2 43 43 PM

Solution

services:  
  mysql:  
    image: mysql:5.7  
    ports:  
      - "3306:3306" 

sudo systemctl stop mysql
sudo lsof -i :3306

Failing to download latest LIME version using get_lime.sh script from tooling

Screenshot 2025-04-28 at 4 30 57 PM

Solution Set your Github fine grained token for public repositories in local env
export GITHUB_AUTH_TOKEN=your_github_token_here

Clone this wiki locally