forked from platypush/platypush
23 lines
1,012 B
Text
23 lines
1,012 B
Text
|
# The device ID is the unique identifier for the device that runs Platypush.
|
||
|
# You should make sure that it's unique at least within your local network,
|
||
|
# as it is used to identify the device in the MQTT topics, on the HTTP API
|
||
|
# and on the published ZeroConf services.
|
||
|
PLATYPUSH_DEVICE_ID=platypush
|
||
|
|
||
|
# Use an external Redis server for the message queue. By default, the Platypush
|
||
|
# container will run a Redis server on the same container. Also remove the
|
||
|
# `--start-redis` option from the `docker run` command if you want to use an
|
||
|
# external Redis server.
|
||
|
# PLATYPUSH_REDIS_HOST=localhost
|
||
|
# PLATYPUSH_REDIS_PORT=6379
|
||
|
|
||
|
# Custom location for the Platypush configuration file.
|
||
|
# PLATYPUSH_CONFIG=/etc/platypush/config.yaml
|
||
|
|
||
|
# Custom location for the Platypush working directory.
|
||
|
# PLATYPUSH_WORKDIR=/var/lib/platypush
|
||
|
|
||
|
# SQLAlchemy database URL. By default, the Platypush container will run on a
|
||
|
# SQLite database installed under <WORKDIR>/main.db. If you want
|
||
|
# PLATYPUSH_DB=sqlite:////var/lib/platypush/main.db
|