version: '3.9' services: web: build: . command: /app/entrypoint.sh ports: - "1337:8000" environment: DJANGO_DEBUG: "True" DJANGO_ALLOWED_HOSTS: "*" DJANGO_SECRET_KEY: "dev-secret-change-me" volumes: - .:/app restart: unless-stopped