Files
tv-control/docker-compose.yml
space eb4e7ea26a
All checks were successful
Build App / build (push) Successful in 7m10s
feat: implement background color and night mode settings in the TV control app
2026-03-01 17:53:41 +01:00

24 lines
511 B
YAML

services:
tv:
image: node:22
working_dir: /app
volumes:
- ./tv:/app
- tv_node_modules:/app/node_modules
ports:
- "4173:4173"
command: >
sh -c "
npm install -g pnpm --silent &&
pnpm install &&
pnpm build &&
IP=$(hostname -I | awk '{print $1}') &&
echo \"\" &&
echo \"==> TV UI available at http://$$IP:4173\" &&
echo \"\" &&
pnpm preview --host 0.0.0.0 --port 4173
"
volumes:
tv_node_modules: