Pins the Compose project name and splits services into core / test / auth profiles so the BMP collector core can deploy standalone. Adds setup.sh (idempotent bootstrap), .env.example, and repo-resident Authelia config templates so a fresh host deploys without manual steps. Parameterizes hardcoded host IP and domain; points the Grafana InfluxDB datasource at the container name. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
16 lines
589 B
Plaintext
16 lines
589 B
Plaintext
---
|
|
# Authelia user database template.
|
|
# setup.sh copies this to ${OBMP_DATA_ROOT}/authelia/users_database.yml only
|
|
# if that file does not already exist. The bcrypt hash below is the default
|
|
# demo account (username: openbmp). Change it after first login, or generate
|
|
# a new hash with:
|
|
# docker run --rm authelia/authelia:4.38 \
|
|
# authelia crypto hash generate bcrypt --password '<new-password>'
|
|
users:
|
|
openbmp:
|
|
displayname: "OpenBMP Demo"
|
|
password: "$2b$12$KQiQo1bYWqadD51HlgfgO.M1JfVlA5qP2YVRoBMTPmWq6osPljUTW"
|
|
email: demo@apodacalab.com
|
|
groups:
|
|
- admins
|