kaneo (minimalist kanban) fork to experiment adding a tangled integration
github.com/usekaneo/kaneo
1services:
2 postgres:
3 image: postgres:16-alpine
4 env_file:
5 - .env
6 ports:
7 - "5432:5432"
8 volumes:
9 - postgres_data:/var/lib/postgresql/data
10 restart: unless-stopped
11 healthcheck:
12 test: ["CMD-SHELL", "pg_isready -U kaneo -d kaneo"]
13 interval: 10s
14 timeout: 5s
15 retries: 5
16
17 api:
18 image: ghcr.io/usekaneo/api:latest
19 ports:
20 - "1337:1337"
21 env_file:
22 - .env
23 depends_on:
24 postgres:
25 condition: service_healthy
26 restart: unless-stopped
27
28 web:
29 image: ghcr.io/usekaneo/web:latest
30 ports:
31 - "5173:5173"
32 env_file:
33 - .env
34 depends_on:
35 - api
36 restart: unless-stopped
37
38volumes:
39 postgres_data: