Python, Flask, Marshmallow, Docker, Redis
Used in Flask app construction.
Used to maintain the relationship between Items and Stores nested and requirements to exist.
- we will create the image of the API
docker build -t flask-api .
- Run a Redis container
docker run -d --name redis-container -p 6379:6379 redis
- Run the API container
docker run -dp 5000:5000 --network host flask-api