mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-24 17:45:41 +00:00
update ENV vars
This commit is contained in:
parent
c763178bb4
commit
e329dd162a
1 changed files with 39 additions and 35 deletions
|
@ -38,11 +38,12 @@ volumes:
|
||||||
## Env Variables & Configuration
|
## Env Variables & Configuration
|
||||||
|
|
||||||
| Variable | Default | Description |
|
| Variable | Default | Description |
|
||||||
| ------------------------ | ---------------------- | ---------------------------------------------------------------------------------- |
|
| ------------------------------------ | ---------------------- | ---------------------------------------------------------------------------------- |
|
||||||
| HBOX_MODE | production | application mode used for runtime behavior can be one of: development, production |
|
| HBOX_MODE | production | application mode used for runtime behavior can be one of: development, production |
|
||||||
| HBOX_WEB_PORT | 7745 | port to run the web server on, if you're using docker do not change this |
|
| HBOX_WEB_PORT | 7745 | port to run the web server on, if you're using docker do not change this |
|
||||||
| HBOX_WEB_HOST | | host to run the web server on, if you're using docker do not change this |
|
| HBOX_WEB_HOST | | host to run the web server on, if you're using docker do not change this |
|
||||||
| HBOX_ALLOW_REGISTRATION | true | allow users to register themselves |
|
| HBOX_OPTIONS_ALLOW_REGISTRATION | true | allow users to register themselves |
|
||||||
|
| HBOX_OPTIONS_AUTO_INCREMENT_ASSET_ID | true | auto increments the asset_id field for new items |
|
||||||
| HBOX_WEB_MAX_UPLOAD_SIZE | 10 | maximum file upload size supported in MB |
|
| HBOX_WEB_MAX_UPLOAD_SIZE | 10 | maximum file upload size supported in MB |
|
||||||
| HBOX_STORAGE_DATA | /data/ | path to the data directory, do not change this if you're using docker |
|
| HBOX_STORAGE_DATA | /data/ | path to the data directory, do not change this if you're using docker |
|
||||||
| HBOX_STORAGE_SQLITE_URL | /data/homebox.db?_fk=1 | sqlite database url, in you're using docker do not change this |
|
| HBOX_STORAGE_SQLITE_URL | /data/homebox.db?_fk=1 | sqlite database url, in you're using docker do not change this |
|
||||||
|
@ -79,7 +80,10 @@ volumes:
|
||||||
--swagger-host/$HBOX_SWAGGER_HOST <string> (default: localhost:7745)
|
--swagger-host/$HBOX_SWAGGER_HOST <string> (default: localhost:7745)
|
||||||
--swagger-scheme/$HBOX_SWAGGER_SCHEME <string> (default: http)
|
--swagger-scheme/$HBOX_SWAGGER_SCHEME <string> (default: http)
|
||||||
--demo/$HBOX_DEMO <bool>
|
--demo/$HBOX_DEMO <bool>
|
||||||
--allow-registration/$HBOX_ALLOW_REGISTRATION <bool> (default: true)
|
--debug-enabled/$HBOX_DEBUG_ENABLED <bool> (default: false)
|
||||||
|
--debug-port/$HBOX_DEBUG_PORT <string> (default: 4000)
|
||||||
|
--options-allow-registration/$HBOX_OPTIONS_ALLOW_REGISTRATION <bool> (default: true)
|
||||||
|
--options-auto-increment-asset-id/$HBOX_OPTIONS_AUTO_INCREMENT_ASSET_ID <bool> (default: true)
|
||||||
--help/-h
|
--help/-h
|
||||||
display this help message
|
display this help message
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue