Traggo is a self-hosted personal finance manager that allows you to manage your finances in one place. In this tutorial, we will be installing Traggo on Fedora CoreOS latest version.
Before you begin, you will need the following:
Traggo runs on Docker, so we need to install Docker on Fedora CoreOS:
$ sudo rpm-ostree install docker
$ sudo systemctl status docker
We will now create a Docker Compose file for Traggo. This file will describe how to run Traggo in Docker.
$ sudo vim docker-compose.yml
version: '3.3'
services:
db:
image: postgres:12-alpine
restart: always
environment:
POSTGRES_USER: traggo
POSTGRES_PASSWORD: changeme
POSTGRES_DB: traggo
app:
image: traggo:latest
restart: always
ports:
- "8080:8080"
depends_on:
- db
environment:
DB_URL: jdbc:postgresql://db/traggo
DB_USERNAME: traggo
DB_PASSWORD: changeme
Next, we will build a Docker image for Traggo.
$ git clone https://github.com/traggo/traggo.git
$ cd traggo
$ sudo docker build -t traggo:latest .
Finally, we will start Traggo:
$ sudo docker-compose up -d
This command will start the database and Traggo app containers in the background. $ sudo docker-compose ps
You should see that the containers have been started and are running.That's it! You have successfully installed Traggo on Fedora CoreOS latest version. You can now access Traggo by navigating to http://
If you want to self-host in an easy, hands free way, need an external IP address, or simply want your data in your own hands, give IPv6.rs a try!
Alternatively, for the best virtual desktop, try Shells!