13 lines
288 B
YAML
13 lines
288 B
YAML
services:
|
|
romm-ui-dev:
|
|
image: node:20-alpine
|
|
working_dir: /app
|
|
ports:
|
|
- "5173:5173"
|
|
volumes:
|
|
- .:/app
|
|
environment:
|
|
- VITE_ROMM_BASE_URL=https://retro.chieflix.com
|
|
command: >
|
|
sh -c 'npm install --legacy-peer-deps && npm run dev -- --host'
|