forked from IQTLabs/SkyScan
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7f6d066
commit f41414f
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
printf "\n\nDownload Docker-Compose SkyScan Files..." | ||
curl -fsSL https://raw.githubusercontent.com/IQTLabs/SkyScan/main/docker-compose.yml -o docker-compose.yml | ||
curl -fsSL https://raw.githubusercontent.com/IQTLabs/SkyScan/main/env-example -o .env | ||
|
||
printf "\n\nDownload Aircraft Database..." | ||
mkdir ./data | ||
curl -fsSL https://opensky-network.org/datasets/metadata/aircraftDatabase.csv -o ./data/aircraftDatabase.csv | ||
|
||
printf "\n\nDownload Docker Containers..." | ||
docker-compose pull | ||
|
||
printf "\n\n\n\n----------------------------------------------------------" | ||
printf "\n1: Configure network interface to same as Axis Camera (192.168.1.x)" | ||
printf "\n2: Configure .env file appropriately" | ||
printf "\n3: docker-compose up" | ||
printf "\n----------------------------------------------------------" |