Skip to content

Commit

Permalink
avoid issues with timezone
Browse files Browse the repository at this point in the history
As reported here sdr-enthusiasts/docker-flightradar24#116 and here sdr-enthusiasts#101 this container needs to run on GMT timezone
  • Loading branch information
ebaschiera committed May 5, 2023
1 parent c690e95 commit 08e6b1f
Showing 1 changed file with 0 additions and 2 deletions.
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

0 comments on commit 08e6b1f

Please sign in to comment.