SekiPOS server sync

This commit is contained in:
2026-06-23 15:20:14 -04:00
parent 5704980dbd
commit ccd1836d38
15 changed files with 1063 additions and 149 deletions

14
docker-compose.yml Normal file
View File

@@ -0,0 +1,14 @@
services:
sekipos-server:
build: .
container_name: sekipos-server
ports:
- "5000:5000"
environment:
- SEKIPOS_MODE=server
- SEKIPOS_SYNC_SECRET=${SEKIPOS_SYNC_SECRET:-changeme}
- PYTHONUNBUFFERED=1
volumes:
- ./db:/app/db
- ./cache:/app/static/cache
restart: unless-stopped