Files
Aroll-Cutter/docker-compose.yaml
2026-02-25 00:27:36 -08:00

25 lines
419 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:
- "8080:8080"
volumes:
- aroll_tmp:/tmp/aroll-uploads
volumes:
aroll_tmp: