Commit f87ce1

2026-01-13 00:38:15 mb tech: added piman
/dev/null .. docker compose files/piman.md
@@ 0,0 1,34 @@
+ # Piman
+ ```yaml
+ services:
+ piman-frontend:
+ build:
+ context: https://github.com/GalwayCal/piman.git
+ dockerfile: Dockerfile.frontend
+ container_name: piman-frontend
+ ports:
+ - "3000:3000"
+ depends_on:
+ - piman-backend
+ environment:
+ - REACT_APP_BACKEND_URL=http://localhost:3001
+ restart: unless-stopped
+
+ piman-backend:
+ build:
+ context: https://github.com/GalwayCal/piman.git
+ dockerfile: Dockerfile.backend
+ container_name: piman-backend
+ ports:
+ - "3001:3001"
+ environment:
+ - ENCRYPTION_KEY=${ENCRYPTION_KEY}
+ - JWT_SECRET=${JWT_SECRET}
+ - DATABASE_URL=./data/piman.db
+ volumes:
+ - piman_data:/app/data
+ restart: unless-stopped
+
+ volumes:
+ piman_data:
+ ```
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9