Skip to content

Instantly share code, notes, and snippets.

@ivan-loh
Created April 1, 2024 15:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ivan-loh/ebb015894d7a9b6de34c42c377621ea2 to your computer and use it in GitHub Desktop.
Save ivan-loh/ebb015894d7a9b6de34c42c377621ea2 to your computer and use it in GitHub Desktop.
development stack
services:
neo4j:
image: neo4j:latest
ports:
- "7474:7474"
- "7687:7687"
environment:
- NEO4J_AUTH=none
- NEO4J_ACCEPT_LICENSE_AGREEMENT=yes
- NEO4J_apoc_export_file_enabled=true
- NEO4J_apoc_import_file_enabled=true
- NEO4J_apoc_import_file_use__neo4j__config=true
- NEO4J_PLUGINS=["apoc"]
neodash:
image: neo4jlabs/neodash
ports:
- "5005:5005"
jupyter:
image: jupyter/all-spark-notebook:latest
ports:
- "8888:8888"
volumes:
- ./notebooks:/home/jovyan/work
environment:
- JUPYTER_TOKEN=supersecretpasswordthatwearecommitingtopublic
- CHOWN_HOME=yes
caddy:
image: caddy
ports:
- "80:80"
- "443:443"
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile
volumes:
notebooks:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment