Remove helm template

This commit is contained in:
2022-06-21 23:05:19 +02:00
parent 58819f4077
commit 429153524c
22 changed files with 0 additions and 187 deletions

36
server.md Normal file
View File

@@ -0,0 +1,36 @@
# Server setup
## Installation docker
- See [Official Website](https://docs.docker.com/engine/install/ubuntu/)
## Setup VPN client
Follow [this tutorial](https://docs.pivpn.io/wireguard/)
NOTE: on ubuntu, you need to add a symbolic link in order to enable the VPN ([source](https://superuser.com/a/1544697))
```bash
ln -s /usr/bin/resolvectl /usr/local/bin/resolvconf
```
## Setup Home Assistant
```bash
sudo docker run -d \
--name homeassistant \
--privileged \
--restart=unless-stopped \
-e TZ=Europe/Brussels \
-v /home/willem/homeassistant:/config \
--network=host \
ghcr.io/home-assistant/home-assistant:stable
```
Now, home assistant can be accessed at http://<host>:8123
## To Do
- Now, you can only connect to the home assistant server when you are connected to the VPN - is this OK or should this be changed?
- Start the VPN client automatically after reboot