14 lines
233 B
YAML
14 lines
233 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
node-server:
|
|
build: .
|
|
ports:
|
|
- "3000:3000"
|
|
- "1883:1883"
|
|
- "8888:8888"
|
|
tty: true
|
|
volumes:
|
|
- .:/usr/src/app
|
|
environment:
|
|
- NODE_ENV=development |