# Django and Minio with Docker ComposeSpin up a mock S3 bucket with Minio used to serve Django static files locally.### Spin upPlace your Docker network gateway IP in `.env`. And spin up the docker containers.```docker network inspect bridgedocker-compose up```### Tear down```docker-compose downdocker volume prune```### TroubleshootingIf you are using Chrome and you are seeing a CORS header issue in the console, try running Chrome temporarily with web security disabled (only for development purposes).```## on Linuxgoogle-chrome --args --user-data-dir="./test" --disable-web-security```