1
0

feat: docker deployment with compose quickstart

This commit is contained in:
2026-08-29 18:07:43 +02:00
parent 061f7349b5
commit ba705d546a
4 changed files with 74 additions and 1 deletions

8
docker-compose.yml Normal file
View File

@@ -0,0 +1,8 @@
services:
record-shop:
build: .
ports:
- "3000:3000"
volumes:
- ./data:/data
restart: unless-stopped