You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docker/README.md
+1-30Lines changed: 1 addition & 30 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,36 +74,7 @@ To build and run the Docker container using Docker Compose, follow these steps:
74
74
MOSTRO_RELAY_LOCAL_PORT=7000 make docker-up
75
75
```
76
76
77
-
5. Configure `MOSTRO_DB_PASSWORD` for non-interactive startup (`docker compose up -d`):
78
-
79
-
- New DB + encryption enabled: set a strong password.
80
-
- New DB + cleartext DB: set it to empty.
81
-
- Existing encrypted DB: you must set the same password used when the DB was created.
82
-
- Existing cleartext DB: keep it empty.
83
-
84
-
```sh
85
-
# Enable DB encryption
86
-
MOSTRO_DB_PASSWORD=YOUR_STRONG_PASSWORD_HERE
87
-
```
88
-
89
-
```sh
90
-
# Disable DB encryption (cleartext DB)
91
-
MOSTRO_DB_PASSWORD=
92
-
```
93
-
94
-
One-shot override from command line:
95
-
96
-
```sh
97
-
MOSTRO_DB_PASSWORD="YOUR_STRONG_PASSWORD_HERE" make docker-up
98
-
```
99
-
100
-
```sh
101
-
MOSTRO_DB_PASSWORD="" make docker-up
102
-
```
103
-
104
-
For a persistent value, place the same `MOSTRO_DB_PASSWORD=...` line in `docker/.env`.
105
-
106
-
For more details about environment variables, see [ENV_VARIABLES.md](ENV_VARIABLES.md).
77
+
5.**Note:** Database encryption has been removed. The `MOSTRO_DB_PASSWORD` environment variable (if set in `compose.yml`) is no longer used for the database; you can omit it. For more details about environment variables, see [ENV_VARIABLES.md](ENV_VARIABLES.md).
0 commit comments