chat-app/docker-compose.debug.yml

15 lines
267 B
YAML

version: '3.4'
services:
chatapp:
image: chatapp
build:
context: .
dockerfile: ./Dockerfile
environment:
NODE_ENV: development
ports:
- 3000:3000
- 9229:9229
command: ["node", "--inspect=0.0.0.0:9229", "index.js"]