BYOK Personal Data Server (PDS) written in Go
ipfs vow atproto pds go
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

build: fix docker compose

+7 -4
+6 -3
docker-compose.yaml
··· 23 23 image: ipfs/kubo:latest 24 24 container_name: vow-ipfs 25 25 volumes: 26 - - ipfs_data:/data/ipfs 26 + - /opt/ipfs:/data/ipfs 27 27 environment: 28 28 # Disable local network discovery. 29 29 IPFS_PROFILE: server 30 30 ports: 31 + # P2P 32 + - 4001:4001 33 + - 4001:4001/udp 31 34 # Expose the IPFS gateway to the reverse proxy only. 32 - - 8081:8080 35 + - 127.0.0.1:8080:8080 33 36 # Keep the RPC API internal. 34 - - 5001:5001 37 + - 127.0.0.1:5001:5001 35 38 restart: unless-stopped 36 39 healthcheck: 37 40 test: ["CMD", "ipfs", "id"]
+1 -1
readme.md
··· 92 92 - `jwk.key` — JWK private key 93 93 - `initial-invite-code.txt` — first invite code (first run only) 94 94 - `./data/` — SQLite metadata database 95 - - `ipfs_data` Docker volume — IPFS blocks and blobs 95 + - `/opt/ipfs` Docker volume — IPFS blocks and blobs 96 96 97 97 ### Reverse Proxy 98 98