Blame

f87ce1 mb tech 2026-01-13 00:38:15
added piman
1
# Piman
7208af mb tech 2026-01-13 15:06:31
updated
2
3
## compose.yml
f87ce1 mb tech 2026-01-13 00:38:15
added piman
4
```yaml
7208af mb tech 2026-01-13 15:06:31
updated
5
---
f87ce1 mb tech 2026-01-13 00:38:15
added piman
6
services:
7
piman-frontend:
8
build:
9
context: https://github.com/GalwayCal/piman.git
10
dockerfile: Dockerfile.frontend
11
container_name: piman-frontend
12
ports:
13
- "3000:3000"
14
depends_on:
15
- piman-backend
16
environment:
17
- REACT_APP_BACKEND_URL=http://localhost:3001
18
restart: unless-stopped
19
20
piman-backend:
21
build:
22
context: https://github.com/GalwayCal/piman.git
23
dockerfile: Dockerfile.backend
24
container_name: piman-backend
25
ports:
26
- "3001:3001"
27
environment:
28
- ENCRYPTION_KEY=${ENCRYPTION_KEY}
29
- JWT_SECRET=${JWT_SECRET}
30
- DATABASE_URL=./data/piman.db
31
volumes:
32
- piman_data:/app/data
33
restart: unless-stopped
34
35
volumes:
36
piman_data:
37
```