15 lines
253 B
YAML
15 lines
253 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
chesskit:
|
|
build: .
|
|
ports:
|
|
- "3100:3000"
|
|
volumes:
|
|
- .:/app
|
|
- /app/node_modules # Prevent overwriting node_modules
|
|
environment:
|
|
- NODE_ENV=development
|
|
stdin_open: true
|
|
tty: true
|