16 lines
391 B
YAML
16 lines
391 B
YAML
services:
|
|
iwanttoheal:
|
|
image: node:24-bookworm-slim
|
|
command: >-
|
|
sh -lc "corepack pnpm install --frozen-lockfile && corepack pnpm run build && corepack pnpm start"
|
|
environment:
|
|
HOST: 0.0.0.0
|
|
PORT: "4173"
|
|
init: true
|
|
ports:
|
|
- "4173:4173"
|
|
restart: unless-stopped
|
|
volumes:
|
|
- /mnt/usbssds/apps/iwanttoheal/app:/app
|
|
working_dir: /app
|