️ Tipi is a homeserver for everyone! One command setup, one click installs for your favorites self-hosted apps.
Go to file
2022-12-07 21:45:04 +01:00
.github Update FUNDING.yml 2022-10-22 13:10:19 +00:00
.husky test: apps.resolver 2022-08-10 22:09:23 +02:00
app-data Test gluetun config 2022-03-30 21:26:01 +02:00
apps feat(api): copy app files locally instead of reading from repo 2022-08-09 20:44:07 +02:00
media fix: re-add ignored media folder [skip ci] 2022-10-11 23:01:36 +02:00
packages refactor: use named exports & remove unused files 2022-12-07 20:29:12 +00:00
repos wip: external repo for apps [skip ci] 2022-08-03 22:36:27 +02:00
screenshots chore: update screenshots 2022-12-07 21:45:04 +01:00
scripts fix: pull images before starting 2022-12-06 14:20:47 +01:00
state Remove apps status from source control 2022-04-15 12:37:51 +00:00
templates feat: customize applications storage-path 2022-09-29 18:33:34 +02:00
traefik feat(update front-end to support a custom domain api): n 2022-09-04 14:54:11 +02:00
.all-contributorsrc docs: update .all-contributorsrc [skip ci] 2022-10-14 16:49:18 +00:00
.dockerignore feat: leverage next standalone output for smaller image size 2022-10-19 14:39:19 +02:00
.gitignore Release/0.7.2 (#249) 2022-11-04 07:49:40 +00:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2022-05-13 14:04:16 +00:00
commitlint.config.js test(wip): apps.resolver 2022-07-27 22:15:41 +02:00
docker-compose.dev.yml feat: move from cookie base auth to jwt auth 2022-11-18 13:27:47 +01:00
docker-compose.rc.yml feat: open apps from same domain in the dashboard 2022-11-09 08:38:15 +00:00
docker-compose.yml feat: open apps from same domain in the dashboard 2022-11-09 08:38:15 +00:00
Dockerfile feat: leverage next standalone output for smaller image size 2022-10-19 14:39:19 +02:00
Dockerfile.dev fix: add make dependency in dockerfile 2022-10-05 23:39:38 +02:00
jest.config.js Test app configs 2022-05-24 18:45:16 +02:00
LICENSE Create LICENSE 2022-04-22 10:22:43 +00:00
package.json chore: bump version 0.7.4 2022-11-18 13:35:40 +01:00
pnpm-lock.yaml refactor(dashboard): move from chakra-ui to tabler 2022-12-07 20:29:12 +00:00
pnpm-workspace.yaml Switch to PNPM Workspaces for internal packages management 2022-05-07 08:03:22 +00:00
README.md docs: update readme 2022-12-07 10:17:24 +01:00
sonar-project.properties ADD: sonar-project.properties file 2022-07-05 11:42:49 +02:00
tsconfig.json Test app configs 2022-05-24 18:45:16 +02:00

Tipi — A personal homeserver for everyone

All Contributors

License Version Issues Docker Pulls Docker Image Size Build codecov

Join the discussion

Discord Matrix

Preview

⚠️ Tipi is still at an early stage of development and issues are to be expected. Feel free to open an issue or pull request if you find a bug.

Tipi is a personal homeserver orchestrator that makes it easy to manage and run multiple services on a single server. It is based on Docker and comes with a simple web interface to manage your services. Tipi is designed to be easy to use, so you don't have to worry about manual configuration or networking. Simply install Tipi on your server and use the web interface to add and manage services. You can see a list of available services in the App Store repo and request new ones if you don't see what you need. To get started, follow the installation instructions below.

Demo

You can try out a demo of Tipi at demo.runtipi.com using the following credentials:

username: user@runtipi.com
password: runtipi

🛠 Installation

Installation Requirements

Ubuntu 18.04 LTS or higher is recommended. However other major Linux distribution are supported but may lead to installation issues. Please file an issue if you encounter one.

Step 1. Download Tipi

Download the latest version of Tipi from GitHub:

git clone https://github.com/meienberger/runtipi.git

Step 2. Run Tipi

Navigate to the downloaded directory and run the start.sh script to start Tipi:

cd runtipi
sudo ./scripts/start.sh

The script will prompt you the ip address of the dashboard once configured. Tipi will run by default on port 80. To select another port you can run the start script with the --port argument

sudo ./scripts/start.sh --port 7000

To stop Tipi, run the stop script.

sudo ./scripts/stop.sh

Custom settings

You can change the default settings by creating a settings.json file. The file should be located in the state directory. This file will make your changes persist across restarts. Example file:

{
  "dnsIp": "9.9.9.9",
  "domain": "mydomain.com"
}

Available settings:

  • dnsIp - The IP address of the DNS server to use. Default: 9.9.9.9
  • domain - The domain name to use for the dashboard. Default: localhost
  • port - The port to use for the dashboard. Default: 80
  • sslPort - The port to use for the dashboard with SSL. Default: 443
  • listenIp - The IP address to listen on. Default: automatically detected
  • storagePath - The path to use for storing data. Default: runtipi/app-data

Linking a domain to your dashboard

If you want to link a domain to your dashboard, you can do so by providing the --domain option in the start script.

sudo ./scripts/start.sh --domain mydomain.com

You can also specify it in the settings.json file as shown in the previous section to keep the setting saved across restarts.

A Let's Encrypt certificate will be generated and installed automatically. Make sure to have ports 80 and 443 open on your firewall and that your domain has an A record pointing to your server IP.

Please note that this setting will only expose the dashboard. If you want to expose other apps, you need to configure them individually. You cannot use the --domain option to expose apps.

This option will only work if you keep the default port 80 and 443 for the dashboard.

Uninstalling Tipi

Make sure Tipi is completely stopped and then remove the runtipi directory.

sudo ./scripts/stop.sh
cd ..
sudo rm -rf runtipi

📚 Documentation

For a detailed guide on how to install Tipi. This amazing article by @kycfree Running a Home Server with Tipi

You can find more documentation and tutorials / FAQ in the Wiki.

❤️ Contributing

Tipi is made to be very easy to plug in new apps. We welcome and appreciate new contributions.

If you want to add a new app or feature, you can follow the Contribution guide for instructions on how to do so.

We are looking for contributions of all kinds. If you know design, development, or have ideas for new features, please get in touch.

📜 License

License

Tipi is licensed under the GNU General Public License v3.0. TL;DR — You may copy, distribute and modify the software as long as you track changes/dates in source files. Any modifications to or software including (via compiler) GPL-licensed code must also be made available under the GPL along with build & install instructions.

The bash script app.sh located in the scripts folder contains some snippets from Umbrel's code. Therefore some parts of the code are licensed under the PolyForm Noncommercial License 1.0.0 license. You can for now consider the whole file under this license. We are actively working on re-writing those parts in order to make them available under the GPL license like the rest of our code.

🗣 Community

Contributors

Thanks goes to these wonderful people (emoji key):

Nicolas Meienberger
Nicolas Meienberger

💻 🚇 ⚠️ 📖
ArneNaessens
ArneNaessens

💻 🤔 ⚠️
DrMxrcy
DrMxrcy

💻 🤔 ⚠️
Cooper
Cooper

💻
JTruj1ll0923
JTruj1ll0923

💻
Stetsed
Stetsed

💻
Jones_Town
Jones_Town

💻
Rushi Chaudhari
Rushi Chaudhari

💻
Robert Blaine
Robert Blaine

💻
Seth For Privacy
Seth For Privacy

💻
Prajna
Prajna

💻
Justin Moy
Justin Moy

💻
dextreem
dextreem

💻
Brahim Hadriche
Brahim Hadriche

💻
Andrew Brereton
Andrew Brereton

🖋

This project follows the all-contributors specification. Contributions of any kind welcome!