first successful export

This commit is contained in:
2026-02-25 00:27:36 -08:00
parent b70ea7e877
commit 68ccc2f4fc
14 changed files with 163 additions and 207 deletions

24
docker-compose.yaml Normal file
View File

@@ -0,0 +1,24 @@
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: