我正在尝试将我的springboot应用程序与我的Neo4j应用程序对接。这是我的docker-compose.yml
version: "3"
services:
myneo4j:
image: neo4j:5.15.0
container_name: "myneo4j"
ports:
- 7474:7474
- 7687:7687
restart: unless-stopped
environment:
- NEO4J_AUTH=neo4j/12345678
volumes:
- ./db/data:/data
- ./db/conf:/conf
- ./db/logs:/logs
- ./db/plugins:/plugins
springboot-neo4j:
image: springboot-neo4j:1.0
container_name: springboot-neo4j
depends_on:
- myneo4j
ports:
- 3002:3002
links:
- myneo4j
字符串
这是我的application.properties:
spring.data.neo4j.uri=bolt://host.docker.internal:7687
spring.neo4j.authentication.username=neo4j
spring.neo4j.authentication.password=12345678
型
我已经查看了过去的论坛,spring.data.neo4j.uri=bolt://host.docker.internal:7687是大多数人的修复方法,除了它不适合我这里。
myneo 4j容器工作并运行。springboot-neo4j容器不工作。它给了我这个错误:
springboot-neo4j | Caused by: org.neo4j.driver.v1.exceptions.ServiceUnavailableException: Unable to connect to localhost:7687, ensure the database is running and that there is a working network connection to it.
型
https://github.com/phammings/Music-Microservice-API这里是我的github,如果有人想复制我的错误。我试图对接我的配置文件微服务,绝对没有运气
非常感谢你,如果有人能让我知道这里的修复
1条答案
按热度按时间g2ieeal71#
验证两个容器(服务)是否在同一网络中。
你需要指定你想在第一个容器完成后启动第二个容器。