Skip to content

Commit 552dba2

Browse files
Changes Structr version to latest release 6.0.0
1 parent 5ab045a commit 552dba2

2 files changed

Lines changed: 10 additions & 5 deletions

File tree

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
A Docker Compose setup for running Structr with a pre-configured Neo4j database.
66

7+
## Note: Privacy Policy Agreement
8+
9+
The environment variable `AGREE_TO_STRUCTR_PRIVACY_POLICY` (https://structr.com/privacy) needs to be set to `yes` in the `docker-compose.yml` file before Structr can be started.
10+
711
---
812

913
## Requirements

docker-compose.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,20 +38,21 @@ services:
3838
aliases:
3939
- neo4j
4040
structr:
41-
image: structr/structr:5.2.1
41+
image: structr/structr:6.0.0
4242
container_name: structr-app
4343
restart: unless-stopped
4444
depends_on:
4545
- neo4j
4646
ports:
4747
- "8082:8082"
4848
environment:
49-
# JVM Memory Settings
50-
- STRUCTR_MIN_HEAP=1g
51-
- STRUCTR_MAX_HEAP=4g
49+
# JVM Memory Settings and timezone
50+
- STRUCTR_application_memory_min__heap=1g
51+
- STRUCTR_application_memory_max__heap=4g
52+
- STRUCTR_application_timezone=UTC
5253

5354
# Privacy Policy Agreement
54-
- AGREE_TO_STRUCTR_PRIVACY_POLICY=yes
55+
- AGREE_TO_STRUCTR_PRIVACY_POLICY=no
5556

5657
# Superuser Configuration
5758
- STRUCTR_superuser_password=superuser

0 commit comments

Comments
 (0)