mirror of
https://github.com/sasjs/server.git
synced 2025-12-08 02:42:44 +00:00
15 lines
286 B
YAML
15 lines
286 B
YAML
version: '3.4'
|
|
|
|
services:
|
|
server:
|
|
image: server
|
|
build:
|
|
context: .
|
|
dockerfile: ./Dockerfile
|
|
environment:
|
|
NODE_ENV: development
|
|
ports:
|
|
- 3000:3000
|
|
- 9229:9229
|
|
command: ["node", "--inspect=0.0.0.0:9229", "./src/server.ts"]
|