Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Services/Donetick.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# FileBrowser
# Donetick

<https://donetick.com/>

Expand Down
64 changes: 64 additions & 0 deletions Services/HomeHub.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# HomeHub

<https://github.com/surajverma/homehub>

## Install Podman on my Server (if not done already)

<https://github.com/Antiz96/Linux-Server/blob/main/Services/Podman.md>

## Installing HomeHub on Docker / Podman

<https://github.com/surajverma/homehub#getting-started-is-easy>

### Create the data and uploads directories

You might want to create additional directories dedicated to other supported features (e.g. Media downloader, PDF compressor, etc...), but I personally don't use those.

```bash
mkdir -p /data/podman/volumes/homehub/{data,uploads}
```

### Generate secret key

```bash
openssl rand -base64 32 > /data/podman/volumes/homehub/.secret_key
chmod 400 /data/podman/volumes/homehub/.secret_key
```

### Create config

An example configuration file is available here at <https://github.com/surajverma/homehub/blob/main/config-example.yml>.
Take this as an example and edit as needed.

```bash
vim /data/podman/volumes/homehub/config.yml
```

### Pull and run the container

```bash
podman run -d \
--name homehub \
-p 5000:5000 \
-e FLASK_ENV=production \
-e SECRET_KEY=$(cat /data/podman/volumes/homehub/.secret_key) \
-v /data/podman/volumes/homehub/data:/app/data \
-v /data/podman/volumes/homehub/uploads:/app/uploads \
-v /data/podman/volumes/homehub/config.yml:/app/config.yml:ro \
ghcr.io/surajverma/homehub:latest
```

### Access

You can now access and configure it on this URL:
`http://[HOSTNAME]:5000/`

## Update/Upgrade procedure

I'm relying on `podman auto-update`.

Optionally clean old dangling images:

```bash
podman image prune
```
3 changes: 2 additions & 1 deletion Services/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ This is a (non-exhaustive) list of installation and configuration procedures of
- [Pi-hole - DNS, DHCP and global Ad-Blocking server](https://github.com/Antiz96/Linux-Server/blob/main/Services/Pi-hole.md)
- [Apache Guacamole - Remote Gateway](https://github.com/Antiz96/Linux-Server/blob/main/Services/Apache-Guacamole.md)
- [Dashy - Dashboard with widgets support](https://github.com/Antiz96/Linux-Server/blob/main/Services/Dashy.md)
- [Donectick - Personal / Family tasks and chores manager](https://github.com/Antiz96/Linux-Server/blob/main/Services/Donetick.md)
- [Donectick - Tasks and chores manager](https://github.com/Antiz96/Linux-Server/blob/main/Services/Donetick.md)
- [HomeHub - Family dashboard](https://github.com/Antiz96/Linux-Server/blob/main/Services/HomeHub.md)
- [Nextcloud - Personal cloud, file sharing and collaborative platform](https://github.com/Antiz96/Linux-Server/blob/main/Services/Nextcloud.md)
- [FileBrowser - Personal cloud and file sharing](https://github.com/Antiz96/Linux-Server/blob/main/Services/FileBrowser.md)
- [Hedgedoc - Collaborative note taking](https://github.com/Antiz96/Linux-Server/blob/main/Services/Hedgedoc.md)
Expand Down