-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (40 loc) · 1.09 KB
/
docker-compose.yml
File metadata and controls
42 lines (40 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
services:
extract:
build: .
env_file:
- .env
environment:
- PROJECTS_CONFIG=/config/projects.json
volumes:
- ${WORKSPACE_PATH:-.}:/workspace:ro
- ${PROJECTS_CONFIG_PATH:-./projects.example.json}:/config/projects.json:ro
extra_hosts:
- "host.docker.internal:host-gateway"
schema-extract:
profiles: ["mongo"]
build: ./mongodb
env_file:
- .env
# neo4j service remains commented out
# neo4j:
# image: neo4j:enterprise
# ports:
# - "7474:7474"
# - "7687:7687"
# environment:
# - NEO4J_ACCEPT_LICENSE_AGREEMENT=yes
# - NEO4J_AUTH=neo4j/securepassword
# - NEO4J_apoc_export_file_enabled=true
# - NEO4J_apoc_import_file_enabled=true
# - NEO4J_apoc_import_file_use__neo4j__config=true
# - NEO4J_PLUGINS=["apoc", "graph-data-science", "apoc-extended", "bloom"]
# volumes:
# - neo4j_data:/data
# - neo4j_logs:/logs
# - /home/theapemachine/data:/var/lib/neo4j/import
# - neo4j_plugins:/plugins
volumes:
neo4j_data:
neo4j_logs:
neo4j_import:
neo4j_plugins: