You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: feeder-containers/feeding-plane-watch.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,15 +31,15 @@ nano /opt/adsb/.env
31
31
This file holds all of the commonly used variables \(such as our latitude, longitude and altitude\). We're going to add our plane.watch variables to this file. Add the following lines to the file:
32
32
33
33
```shell
34
-
PW_API_KEY=YOURAPIKEY
34
+
PLANEWATCH_KEY=YOURAPIKEY
35
35
```
36
36
37
37
* Replace `YOURAPIKEY` with the API KEY that was provided the previous step.
@@ -59,7 +59,7 @@ Append the following lines to the end of the file \(inside the `services:` secti
59
59
- LONG=${FEEDER_LONG}
60
60
- ALT=${FEEDER_ALT_M}m
61
61
- TZ=${FEEDER_TZ}
62
-
- API_KEY=${PW_API_KEY}
62
+
- API_KEY=${PLANEWATCH_KEY}
63
63
tmpfs:
64
64
- /run:exec,size=64M
65
65
- /var/log
@@ -74,7 +74,7 @@ To explain what's going on in this addition:
74
74
* `LONG` will use the `FEEDER_LONG` variable from your `.env` file.
75
75
* `ALT` will use the `FEEDER_ALT_M` variable from your `.env` file.
76
76
* `TZ` will use the `FEEDER_TZ` variable from your `.env` file.
77
-
* `API_KEY` will use the `PW_API_KEY` variable from your `.env` file.
77
+
* `API_KEY` will use the `PLANEWATCH_KEY` variable from your `.env` file.
78
78
* 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:
79
79
* The size of the container, by not writing changes to the underlying container; and
0 commit comments