-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
39 lines (36 loc) · 1.11 KB
/
docker-compose.yml
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
version: '3.3'
services:
neo4j:
image: neo4j:NEO4j_VERSION
environment:
- NEO4J_AUTH=neo4j/structr
networks:
database:
aliases:
- neo4j
structr:
image: structr/structr:STRUCTR_VERSION
depends_on:
- neo4j
ports:
- "8082:8082"
environment:
- STRUCTR_MIN_HEAP=1g
- STRUCTR_MAX_HEAP=2g
- AGREE_TO_STRUCTR_PRIVACY_POLICY=yes
- STRUCTR_superuser_password=superuser
- STRUCTR_database_available_connections=neo4j_default
- STRUCTR_neo4j__default_database_driver=org.structr.bolt.BoltDatabaseService
- STRUCTR_neo4j__default_database_connection_name=neo4j_default
- STRUCTR_neo4j__default_database_connection_url=bolt://neo4j:7687
- STRUCTR_neo4j__default_database_connection_username=neo4j
- STRUCTR_neo4j__default_database_connection_password=structr
- STRUCTR_nodeservice_active=neo4j_default
- STRUCTR_license_key=STRUCTR_LICENSE
volumes:
- STRUCTR_WEBAPP_PATH:/repository
- STRUCTR_CONF_FILE:/var/lib/structr/structr.conf
networks:
database:
networks:
database: