mirror of
https://github.com/bradganley/bsky-user-activity-bot.git
synced 2025-02-11 02:36:27 +00:00
Some checks failed
Create and publish the bot container / build-and-push-image (push) Has been cancelled
44 lines
921 B
YAML
Executable File
44 lines
921 B
YAML
Executable File
version: "3.8"
|
|
services:
|
|
bskybot:
|
|
depends_on:
|
|
- jetstream
|
|
build: .
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./sessionData:/sessionData
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- NAME=Aaron
|
|
- USER_DID=did:plc:ksjfbda7262bbqmuoly54lww
|
|
#- TRACKER_BSKY_HANDLE=
|
|
#- TRACKER_BSKY_PASSWORD=
|
|
#- DEBUG_LOG_ACTIVE=true
|
|
#- DEBUG_LOG_LEVEL=info
|
|
#- JETSTREAM_URL='ws://jetstream:6008/subscribe'
|
|
#- SESSION_DATA_PATH='/sessionData'
|
|
networks:
|
|
- bun
|
|
|
|
|
|
jetstream:
|
|
image: "ghcr.io/bluesky-social/jetstream:sha-ea96859b93d1790ff20bb168e5fc442d462cea1e"
|
|
container_name: jetstream
|
|
restart: unless-stopped
|
|
environment:
|
|
- CURSOR_FILE=/data/cursor.json
|
|
ports:
|
|
- "6008:6008"
|
|
volumes:
|
|
- ./data:/data
|
|
networks:
|
|
- bun
|
|
|
|
networks:
|
|
bun:
|
|
driver: bridge
|
|
ipam:
|
|
config:
|
|
- subnet: 10.10.0.0/16
|