DB_USER=your_username DB_PASSWORD=your_secure_password DB_NAME=wax_sengine DB_HOST=sengine-db docker-compose up --build
DB_USER=your_username DB_PASSWORD=your_secure_password DB_NAME=wax_sengine DB_HOST=sengine-db CONTAINER_NAME=sengine-backend docker-compose up --build --no-deps -d sengine-app
--build: Rebuilds the image
--no-deps: Doesn't start linked services (so it won't touch the database)
-d: Runs in detached mode
--sengine-app: Specifies the service name to rebuild and restart
SQL updates:
ALTER TABLE validate_results ADD COLUMN IF NOT EXISTS light_api BOOLEAN DEFAULT FALSE, ADD COLUMN IF NOT EXISTS light_api_ok BOOLEAN DEFAULT FALSE;
ALTER TABLE validate_results ADD COLUMN IF NOT EXISTS ipfs BOOLEAN DEFAULT FALSE, ADD COLUMN IF NOT EXISTS ipfs_ok BOOLEAN DEFAULT FALSE;