11 lines
150 B
YAML
11 lines
150 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
web:
|
|
build: .
|
|
ports:
|
|
- "9000:9000"
|
|
volumes:
|
|
- .:/app
|
|
restart: always
|
|
command: npm run both |