Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol.
wisp.place
1services:
2 postgres:
3 image: postgres:16-alpine
4 container_name: wisp-postgres
5 restart: unless-stopped
6 environment:
7 POSTGRES_USER: postgres
8 POSTGRES_PASSWORD: postgres
9 POSTGRES_DB: wisp
10 ports:
11 - "5432:5432"
12 volumes:
13 - postgres_data:/var/lib/postgresql/data
14 healthcheck:
15 test: ["CMD-SHELL", "pg_isready -U postgres"]
16 interval: 5s
17 timeout: 5s
18 retries: 5
19
20volumes:
21 postgres_data: