Nakama is running from command line using docker-compose up command but unable to access it from URL http://127.0.0.1:7350/ What can be the issue?

127 views Asked by At

Nakama is running from command line using docker-compose up command but unable to access it from URL What can be the issue ?

1

There are 1 answers

0
alirezadp10 On

you must set host network for your service:

version: '3'
services:
    nakama:
        network_mode: "host"