version: '3' services: backend: build: ./docker/ network_mode: "bridge" container_name: {{cookiecutter.project_name}} image: {{cookiecutter.docker_owner}}/{{cookiecutter.project_name}} ports: - "8000" volumes: - .:/usr/src/app command: /bin/bash tty: true stdin_open: true