version: '3' services: app: build: context: . dockerfile: Dockerfile container_name: app_container volumes: - ./src:/app ports: - "3000:3000" environment: NODE_ENV: production restart: always