This is a proof of concept to run the graph database neo4j on balena x86 devices.
Running this project is as simple as deploying it to a balenaCloud application. You can do it in just one click by using the button below:
Follow instructions, click Add a Device and flash an SD card with that OS image dowloaded from balenaCloud. Enjoy the magic 🌟Over-The-Air🌟!
The neo4j UI service is exposed on the 7474
port. You can access to the UI using the local IP address with the port 7474.
Service | Port | Username | Password |
---|---|---|---|
neo4j | 7474 (http) | neo4j | balenabalenabalena |
To add the neo4j Block, add this service in your docker-compose.yml
, as shown below.
neo4j:
image: bh.cr/marc6/neo4j-amd64
ports:
- "7474:7474"
- "7687:7687"
volumes:
- neo4j-data:/data
- neo4j-logs:/logs
environment:
- NEO4J_AUTH=< your username >/< your password >
restart: always
volumes:
neo4j-data:
neo4j-logs:
At this moment you will have the neo4j graph database UI available on the port 7474
.
If you detect any issue using this block, feel free to contact us at the forums.balena.io.