Create a .env file in the root folder with the following content:
ALLOWED_HOSTS=["*"]
APP_DB_NAME=app
APP_DB_USER=app
APP_DB_PASSWORD=app
APP_DB_HOST=db
APP_DB_PORT=5432
DEBUG=True
ENV=dev
SECRET_KEY="django-insecure-g4t5!n2f53ixx)$y!5s9#8!$&$8%d3169@gv!i()nhcr9yk*l0"
docker-compose up -d
Use compiled-lib.dockerfile in docker-images folder as an example to your Dockerfile or modify the docker-compose to add/modify:
container_name: web
build:
context: ./docker-images/.
dockerfile: compiled-lib.dockerfile
docker-compose -f docker-compose.prod.yml up -d