Yarn.social

Self-Hosted, Twitter™-like Decentralised micro-logging platform. No ads, no tracking, your content, your data.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: "3.8"
 
services:
  yarnd:
    build:
      context: .
      dockerfile: Dockerfile.dev
    ports:
      - "8000:8000/tcp"
    volumes:
      - ./data:/src/data
      - ./internal:/src/internal
    healthcheck:
      test: wget -nv -t1 --spider 'http://localhost:8000' || exit 1
      interval: 10s
      retries: 5
      start_period: 10s
      timeout: 10s
    restart: always

Resources

Website: https://yarn.social/

Git: https://git.mills.io/yarnsocial/yarn

Docker Hub: https://hub.docker.com/r/prologic/yarnd

Configuration: https://git.mills.io/yarnsocial/yarn#deploy-with-docker