Files
Aroll-Cutter/docker-compose.yaml
2026-03-01 02:01:35 -08:00

26 lines
420 B
YAML

services:
frontend:
image: node:20-alpine
working_dir: /app
volumes:
- ./frontend:/app
- /app/node_modules
ports:
- "5173:5173"
command: sh -c "npm install && npm run dev -- --host"
depends_on:
- app
app:
build:
context: .
dockerfile: DockerFile
ports:
- "8082:8082"
volumes:
- aroll_tmp:/tmp/aroll-uploads
volumes:
aroll_tmp: