I want to deploy neo4j:4.4.9-enterprise via docker-compose and install apoc + gds plugins.
This is my docker-compose.yml
---
version: '3'
services:
neo4j:
image: neo4j:4.4.9-enterprise
hostname: neo4j
container_name: neo4j
ports:
- "7474:7474"
- "7687:7687"
environment:
- NEO4J_ACCEPT_LICENSE_AGREEMENT=yes
- NEO4J_dbms_logs_debug_level=DEBUG
- NEO4J_dbms_memory_heap_max__size=2G
- NEO4J_dbms_memory_heap_initial__size=1G
- NEO4J_dbms_memory_pagecache_size=1G
- NEO4J_AUTH=neo4j/admin
# install plugins
- NEO4JLABS_PLUGINS=["apoc", "graph-data-science"]
- NEO4J_dbms_security_procedures_whitelist=gds.*, apoc.*
# grant permissions to the APOC function and procedures
- NEO4J_dbms_security_procedures_unrestricted=gds.*, apoc.*
Unfortunately, I've got this error message
Error: No jar URL found for version '4.4.9' in versions.json from 'https://neo4j-contrib.github.io/neo4j-apoc-procedures/versions.json
But I can clearly see the uri from the link of versions.json
I'm having intermittent issues with 4.3.16 and 4.3.17. Since paying serious money for our enterprise clusters and having our non-prod environments impacted by this is really upsetting.
I want to deploy
neo4j:4.4.9-enterprise
via docker-compose and install apoc + gds plugins. This is my docker-compose.ymlUnfortunately, I've got this error message
Error: No jar URL found for version '4.4.9' in versions.json from 'https://neo4j-contrib.github.io/neo4j-apoc-procedures/versions.json
But I can clearly see the uri from the link of versions.json