AnyCable

Realtime server for reliable two-way communication over WebSockets, Server-sent events, etc.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: "3.3"
services:
  anycable-go:
    image: anycable/anycable-go:latest
    ulimits:
      nofile:
        soft: 65536
        hard: 65536
    ports:
      - 8080:8080
    environment:
      - REDIS_URL=redis://redis:6379/0
      - ANYCABLE_RPC_HOST=rpc:50051
      - ANYCABLE_HOST=0.0.0.0
    restart: always  

Resources

Website: https://anycable.io/

GitHub: https://github.com/anycable/anycable-go

Docker Hub: https://hub.docker.com/r/anycable/anycable-go

Configuration: https://docs.anycable.io/deployment/docker