f69efb67ad
- Tauri desktop app (apps/desktop) - Python Django API service (services/api) - Deployment scripts and docs
19 lines
328 B
Bash
19 lines
328 B
Bash
#!/bin/ash
|
|
|
|
encrypt_password() {
|
|
echo "${MQ_USERNAME}:${MQ_PASSWORD}" > /mosquitto/password.txt
|
|
mosquitto_passwd -U /mosquitto/password.txt
|
|
}
|
|
|
|
main(){
|
|
|
|
encrypt_password
|
|
echo "Starting MQ..."
|
|
# Run the main container command.
|
|
/docker-entrypoint.sh
|
|
/usr/sbin/mosquitto -c /mosquitto/config/mosquitto.conf
|
|
|
|
}
|
|
|
|
main "${@}"
|