Onelevenvy
Onelevenvy
> how to login after installation? The admin username and password settings are in the .env file, and by default, they are: `[email protected] FIRST_SUPERUSER_PASSWORD=123456` if you haven't modified them.
Is it deployed on a local or remote server? What error does the front-end login page show?
> Is it deployed on a local or remote server? What error does the front-end login page show? If you're using a remote server, you need to change "localhost" to...
It should be an issue with my code. From the image you provided, I can see that your frontend address is `ai:3000` I haven't tested whether the server name: port...
> 你好 我ip地址+port方式遇到一样的问题,怎么解决 你好,docker还是源码,如果是源码临时改下下面的后端访问地址,我这几天彻底修复一下这个问题   如果是docker,需要等我修复后 build新镜像哈
原因应该是NEXT_PUBLIC_API_URL 这个环境变量有时候在docker里没用生效
> 好滴,那等你更新吧 > […](#) 你好,我没重新build,就用dockerhub现成的镜像,我昨晚重新测试了一下,windows的dockers,和linux的docker 在A主机部署(ip:192.168.1.95),B主机(ip:192.168.1.166)局域网访问都ok,你要不有空也重新试一下,步骤: ``` cd flock/docker cp ../.env.example .env # 也就是将.env文件拷贝到docker目录下,然后更改API_URL,NEXT_PUBLIC_API_URL 这两个环境变量为你部署主机的ip # 比如我的是 API_URL=http://192.168.1.95:8000 NEXT_PUBLIC_API_URL=http://192.168.1.95:8000 ``` 如果还有问题,如果方便可以贴下你的主机,docker,网络等配置信息,我尽力去修复
> 我是内网 > […](#) 内网外网是一样的啊,只要设置API_URL=http://192.168.1.95:8000 NEXT_PUBLIC_API_URL=http://192.168.1.95:8000 为你部署机器的ip地址即可
Thank you for your suggestion. I do have plans to upgrade the existing team management system to an RBAC system. However, due to my current workload, I'm unable to provide...