1 minute read

(This assumes you have a running traefik instance, and working domain/dns)

docker-compose.yml

services:
  pds:
    container_name: pds
    image: ghcr.io/bluesky-social/pds:0.4
    restart: unless-stopped
    volumes:
      - ./bluesky/pds:/pds
    networks:
      - proxy
    labels:
      traefik.enable: true
      traefik.http.routers.bluesky-pds.rule: Host(`example.com`)
      traefik.http.routers.bluesky-pds.entrypoints: websecure
      traefik.http.routers.bluesky-pds.tls.certresolver: letsencrypttls
      traefik.http.services.bluesky-pds.loadbalancer.server.port: 3000
    environment:
      - PDS_DATADIR=/pds
      - PDS_BLOBSTORE_DISK_LOCATION=/pds/blocks
      - PDS_HOSTNAME= #example.com
      - PDS_JWT_SECRET= #openssl rand --hex 16
      - PDS_ADMIN_PASSWORD= #openssl rand --hex 16
      - PDS_PLC_ROTATION_KEY_K256_PRIVATE_KEY_HEX= #openssl ecparam --name secp256k1 --genkey --noout --outform DER | tail --bytes=+8 | head --bytes=32 | xxd --plain --cols 32
      - PDS_EMAIL_SMTP_URL= #smtp://username@gmail.com:password@smtp.gmail.com:587
      - PDS_EMAIL_FROM_ADDRESS= #admin@domain.com
      - PDS_MODERATION_EMAIL_SMTP_URL= #smtp://username@gmail.com:password@smtp.gmail.com:587
      - PDS_MODERATION_EMAIL_ADDRESS= #admin@domain.com
      - PDS_DID_PLC_URL=https://plc.directory
      - PDS_BSKY_APP_VIEW_URL=https://api.bsky.app
      - PDS_BSKY_APP_VIEW_DID=did:web:api.bsky.app
      - PDS_REPORT_SERVICE_URL=https://mod.bsky.app
      - PDS_REPORT_SERVICE_DID=did:plc:ar7c4by46qjdydhdevvrndac
      - PDS_CRAWLERS=https://bsky.network
      - LOG_ENABLED=true
networks:
  proxy:
    external: true

next run the following to generate an invite:

curl --request POST \
  --url https://example.com/xrpc/com.atproto.server.createInviteCode \
  --header 'Authorization: Basic <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "useCount": 1
}'

Then you should be able to sign up on https://bsky.app with your $PDS_HOSTNAME as the hosting provider.

If you’re looking for mastodon check here.

If you’re looking for setting up traefik check here.

Used https://therobbiedavis.com/selfhosting-bluesky-with-docker-and-swag/ as a resource for this.

Updated: