Centrifugo Docker Compose Config

    centrifugo:
        image: centrifugo/centrifugo:1.7.3
        environment:
          - CENTRIFUGO_SECRET=potato
          - CENTRIFUGO_ADMIN_PASSWORD=potato
          - CENTRIFUGO_ADMIN_SECRET=potato
        command: centrifugo --web
        ports:
          - "8569:8000"
        networks:
          crv_network:
            aliases:
              - crv_centrifugo

Admittedly not likely useful by many, but hopefully will save someone some time in the future.

This is just stuff I found throughout various GitHub tickets that’s good enough to get Centrifugo up and running on http://127.0.0.1:8569/

Published by

Code Review

CodeReviewVideos is a video training site helping software developers learn Symfony faster and easier.

One thought on “Centrifugo Docker Compose Config”

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.