docker-compose.yml 203 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 version: '3.8' services: web: build: ./app command: python manage.py runserver 0.0.0.0:8001 volumes: - ./app/:/usr/src/app/ ports: - 8001:8001 env_file: - ./.env