slack status without the slack
status.zzstoatzz.io
hatk
statusphere
1services:
2 plc:
3 build: https://github.com/did-method-plc/did-method-plc.git
4 ports:
5 - "2582:2582"
6 environment:
7 - DATABASE_URL=postgres://plc:plc@postgres:5432/plc
8 - PORT=2582
9 depends_on:
10 - postgres
11 healthcheck:
12 test: ["CMD", "curl", "-f", "http://localhost:2582/_health"]
13 interval: 5s
14 timeout: 3s
15 retries: 5
16
17 pds:
18 image: ghcr.io/bluesky-social/pds:latest
19 ports:
20 - "2583:2583"
21 environment:
22 - PDS_HOSTNAME=localhost
23 - PDS_PORT=2583
24 - PDS_DID_PLC_URL=http://plc:2582
25 - PDS_JWT_SECRET=dev-jwt-secret
26 - PDS_ADMIN_PASSWORD=dev-admin
27 - PDS_INVITE_REQUIRED=false
28 - PDS_DEV_MODE=true
29 depends_on:
30 plc:
31 condition: service_healthy
32 volumes:
33 - pds_data:/pds
34
35 postgres:
36 image: postgres:16-alpine
37 environment:
38 - POSTGRES_USER=plc
39 - POSTGRES_PASSWORD=plc
40 - POSTGRES_DB=plc
41 volumes:
42 - plc_data:/var/lib/postgresql/data
43
44volumes:
45 pds_data:
46 plc_data: