mirror of
https://git.korhonen.cc/FunctionalHacker/dotfiles.git
synced 2024-11-04 18:00:20 +00:00
a376294eb7
Signed-off-by: Marko Korhonen <marko.korhonen@reekynet.com>
9 lines
364 B
Bash
Executable File
9 lines
364 B
Bash
Executable File
#!/bin/bash
|
|
cat <<ENV > .env
|
|
MYSQL_ROOT_PASSWORD=$(pass reekynet/docker-home-automation | rg 'MYSQL_ROOT_PASSWORD' | cut -d' ' -f2-)
|
|
HA_MYSQL_PASSWORD="$(pass reekynet/docker-home-automation | rg 'HA_MYSQL_PASSWORD' | cut -d' ' -f2-)
|
|
DECONZ_VNC_PASSWORD=$(pass reekynet/docker-home-automation | rg 'DECONZ_VNC_PASSWORD' | cut -d' ' -f2-)
|
|
ENV
|
|
|
|
docker-compose up -d
|