mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2026-03-30 20:22:15 -04:00
11 lines
359 B
Markdown
11 lines
359 B
Markdown
# Disable Registration
|
|
|
|
To disable registration, you can set the following variable in your docker-compose.yml under the server service:
|
|
|
|
```yaml
|
|
environment:
|
|
- DISABLE_REGISTRATION=True
|
|
# OPTIONAL: Set the message to display when registration is disabled
|
|
- DISABLE_REGISTRATION_MESSAGE='Registration is disabled for this instance of AdventureLog.'
|
|
```
|