After training a new model, can't find in the available models

I just started with rasa nlu module. i set up a module in docker. i trained using

docker exec -it 926adafe9718 python -m rasa_nlu.train -c /app/sample_configs/config_spacy.json --data /app/data/examples/rasa/demo-rasa.json -o models --fixed_model_name nlu --project current --verbose

Configuration :

{ “language”:“en”, “pipeline”:“spacy_sklearn”, “path”:"./models/nlu", “data”:"./data/data.json" }

In status

curl 192.168.99.100:5000/status | python -mjson.tool

{ “max_training_processes”: 1, “current_training_processes”: 0, “available_projects”: { “default”: { “status”: “ready”, “current_training_processes”: 0, “available_models”: [ “fallback” ], “loaded_models”: [ “fallback” ] } } }

I get these. It doesn’t have any model that i trained. I have also reloaded docker restart 926adafe9718

Please help me in this regard.