Skip to content

Instantly share code, notes, and snippets.

@JiapengLi
Last active April 6, 2022 04:15
Show Gist options
  • Select an option

  • Save JiapengLi/7f12a7dcf565a1d0046f39d52d6093aa to your computer and use it in GitHub Desktop.

Select an option

Save JiapengLi/7f12a7dcf565a1d0046f39d52d6093aa to your computer and use it in GitHub Desktop.
deploy streamr docker compose file

docker-compose.yaml

version: "3"
services:
  streamr-miner:
    restart: always
    image: streamr/broker-node:latest
    container_name: streamr
    init: true
    privileged: true
    network_mode: host
    ports:
      - 7170:7170
      - 7171:7171
      - 1883:1883
    volumes:
      - '/opt/streamr/docker:/root/.streamr'
    ulimits:
      nofile:
        soft: 64000
        hard: 64000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment