docker-compose links 容器相互访问

时间:2025-05-12 08:09:19
version: "3" services: backend: build: context: backend dockerfile: Dockerfile-backend ports: - "8099:8099" - "8009:8009" links: - mongo depends_on: - mongo mongo: build: context: mongo dockerfile: Dockerfile-mongo volumes: - xtest-data:/data/db expose: - "27017" # uncommand to able host visit mongo #ports: # - "27017:27017" command: ./start_mongo.sh volumes: xtest-data: