Solo items y usuarios

This commit is contained in:
2026-06-05 22:06:52 -05:00
commit aa5e85ae94
23 changed files with 6152 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
services:
web:
build:
context: .
dockerfile: backend/Dockerfile
container_name: infinity-web
ports:
- "6060:3000"
volumes:
# Persistencia: los cambios en JSON se guardan en el host
- ./data:/app/data
- ./Imagenes:/app/Imagenes
environment:
- NODE_ENV=production
- PORT=3000
# ⚠️ Cambiar esta clave en producción por algo aleatorio y secreto
- SESSION_SECRET=cambia-esta-clave-en-produccion-12345
restart: unless-stopped