Created
April 1, 2024 15:39
-
-
Save ivan-loh/ebb015894d7a9b6de34c42c377621ea2 to your computer and use it in GitHub Desktop.
development stack
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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