This repository has no description
atproto music social
0

Configure Feed

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

nascent / docker-compose.dev.yml
837 B 33 lines
1services: 2 tap: 3 container_name: tab 4 image: buoy.cr/pds.dad/tab:latest 5 restart: unless-stopped 6 environment: 7 TAB_JETSTREAM_URL: https://jetstream1.us-east.bsky.network 8 TAB_NO_REPLAY: true 9 TAB_COLLECTION_FILTERS: fm.teal.alpha.feed.play 10 TAB_SIGNAL_COLLECTION: fm.teal.alpha.feed.play 11 TAB_DISABLE_ACKS: true 12 ports: 13 - "2480:2480" 14 postgres: 15 container_name: nascentdb 16 image: postgres:18 17 restart: unless-stopped 18 environment: 19 POSTGRES_USER: postgres 20 POSTGRES_PASSWORD: password 21 POSTGRES_DB: nascentdb 22 ports: 23 - "5432:5432" 24 volumes: 25 - nascent_pgdata:/var/lib/postgresql 26 healthcheck: 27 test: ["CMD-SHELL", "pg_isready -U postgres -d nascentdb"] 28 interval: 5s 29 timeout: 5s 30 retries: 10 31 32volumes: 33 nascent_pgdata: