services: my-appview: container_name: my-appview image: atcr.io/willdot.net/my-appview:latest ports: - "3333:3000" volumes: - ./data:/data restart: always environment: APPVIEW_DID: ${APPVIEW_DID} APPVIEW_HOSTNAME: ${APPVIEW_HOSTNAME} APPVIEW_HOST: ${APPVIEW_HOST} APPVIEW_PORT: ${APPVIEW_PORT} USERS_DID: ${USERS_DID} TAP_URL: ${TAP_URL} DATABASE_URL: ${DATABASE_URL} depends_on: - tap tap: container_name: tap image: ghcr.io/bluesky-social/indigo/tap:latest ports: - "2480:2480" volumes: - ./data:/data environment: TAP_COLLECTION_FILTERS: "app.bsky.feed.post,app.bsky.feed.repost,app.bsky.graph.follow"