mirror of
https://github.com/xtermjs/xterm.js.git
synced 2026-01-25 16:03:36 +00:00
18 lines
289 B
YAML
18 lines
289 B
YAML
version: "3"
|
|
|
|
services:
|
|
web:
|
|
image: xtermjs/xterm.js:latest
|
|
build: .
|
|
volumes:
|
|
- ./:/usr/src/app
|
|
ports:
|
|
- ${XTERMJS_PORT:-3000}:3000
|
|
command: ["npm", "start"]
|
|
|
|
watch:
|
|
build: .
|
|
volumes:
|
|
- ./:/usr/src/app
|
|
command: ["npm", "run", "watch"]
|