Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add custom tar1090 version instructions to readme #173

Merged
merged 1 commit into from
Jan 24, 2025
Merged
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
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
- [Configuring the built-in MLAT Hub](#configuring-the-built-in-mlat-hub)
- [Web Gui (`tar1090`) Configuration](#web-gui-tar1090-configuration)
- [`tar1090` Core Configuration](#tar1090-core-configuration)
- [Using a locally modified tar1090 version](#using-a-locally-modified-tar1090-version)
- [`tar1090` `config.js` Configuration - Title](#tar1090-configjs-configuration---title)
- [`tar1090` `config.js` Configuration - Output](#tar1090-configjs-configuration---output)
- [`tar1090` `config.js` Configuration - Map Settings](#tar1090-configjs-configuration---map-settings)
Expand Down Expand Up @@ -611,6 +612,29 @@ Note - due to design limitations of `readsb`, the `tar1090` graphical interface
- For documentation on the aircraft.json format see this page: <https://github.com/wiedehopf/readsb/blob/dev/README-json.md>
- TAR1090_ENABLE_AC_DB causes readsb to load the tar1090 database as a csv file from this repository: <https://github.com/wiedehopf/tar1090-db/tree/csv>

#### Using a locally modified tar1090 version

`/local/custom_version` can be any folder you prefer.

Clone tar1090 to a local direcotry: `git clone https://github.com/wiedehopf/tar1090 /local/custom_version`

Make `/local/custom_version` available as `/var/tar1090_git_source` in the container:

```
volumes:
- /local/custom_version:/var/tar1090_git_source
```

Make sure you have UPDATE_TAR1090 env var set to true.

Changes in `/local/custom_version` won't be visible with a simple page reload, you need to run:

```
docker exec -it ultrafeeder bash /etc/s6-overlay/startup.d/02-tar1090-update
```

After this has finished a simple reload in the browser should do the trick.

#### `tar1090` `config.js` Configuration - Title

| Environment Variable | Purpose | Default |
Expand Down