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

avoid issues with timezone in flightradar24 container #105

Merged
merged 1 commit into from
May 5, 2023
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
avoid issues with timezone
As reported here sdr-enthusiasts/docker-flightradar24#116 and here #101 this container needs to run on GMT timezone
  • Loading branch information
ebaschiera committed May 5, 2023
commit 08e6b1f6ed8442de17179bcb6572dfa7696dcb31
2 changes: 0 additions & 2 deletions feeder-containers/feeding-flightradar24.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ Append the following lines to the end of the file \(inside the `services:` secti
- 8754:8754
environment:
- BEASTHOST=readsb
- TZ=${FEEDER_TZ}
- FR24KEY=${FR24_SHARING_KEY}
tmpfs:
- /var/log
Expand All @@ -119,7 +118,6 @@ To explain what's going on in this addition:
* We're creating a container called `fr24`, from the image `ghcr.io/sdr-enthusiasts/docker-flightradar24:latest`.
* We're passing several environment variables to the container:
* `BEASTHOST=readsb` to inform the feeder to get its ADSB data from the container `readsb` network.
* `TZ` will use the `FEEDER_TZ` variable from your `.env` file.
* `FR24KEY` will use the `FR24_SHARING_KEY` variable from your `.env` file.
* We're using `tmpfs` for volumes that have regular I/O. Any files stored in a `tmpfs` mount are temporarily stored outside the container's writable layer. This helps to reduce:
* The size of the container, by not writing changes to the underlying container; and
Expand Down