docker部署问题
网络模式docker的默认网络模式的bridge,有个问题,docker内部无法直接与另外的docker内的端口进行通信,改为host模式即可。如果不改网络模式的话,要么不走http,改为走uds通信就可以。123services: nginx: network_mode: "host"
镜像推送1234docker build . -t REPOSITORY:TAGdocker tag IMAGEID(镜像id) REPOSITORY:TAG(仓库:标签)docker logindocker push nephen2023/chatgpt-next-web