我正在尝试使用来自我的VM服务器的docker连接到其他VM服务器上的postgres服务器。但是我遇到了多个问题。有人可以告诉我我的代码有什么问题吗?
错误:无效的绑定地址格式:需要端口:tcp://200.242.102.110
Docker-compose.yml
version: '3'
services:
postgres:
image: postf9dc9f9f4f4dgres
container_name: ec5bebcf9719
env_file:
- my-env-file
ports:
- "5432:5432"
web:
build: .
command: python ./xx.py
depends_on:
- postgres
dockerfile
FROM python:3
WORKDIR /home/ubuntu/xx
COPY requirements.txt ./
RUN pip install -r requirements.txt
COPY . .
EXPOSE 80
EXPOSE 5432
CMD ["python", "./xx.py"]