Skip to content

Commit

Permalink
Merge pull request IQTLabs#47 from mchadwick-iqt/main
Browse files Browse the repository at this point in the history
Remove custom MQTT Container Build, Add in Config, General Cleanup
  • Loading branch information
mchadwick-iqt authored Feb 24, 2023
2 parents 7f6d066 + 4acbdb1 commit 3d3db34
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 28 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dockerbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Build Images
env:
# Every folder in the repo that has a Dockerfile within it, comma separated
DOCKERFOLDERS: "edge-detect/ai,tracker,piaware,pan-tilt-pi,notebook-server,mqtt,egi,axis-ptz"
DOCKERFOLDERS: "edge-detect/ai,tracker,piaware,pan-tilt-pi,notebook-server,egi,axis-ptz"
PROJECT_NAME: "skyscan"
run: |
IFS=","
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2020 IQT Labs, LLC
Copyright 2020-2023 IQT Labs, LLC

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,7 @@ The third pipeline uses the [YOLTv4 model](https://github.com/avanetten/yoltv4)
Follow the steps below for installing the edge software.

1. [Install and Configure Raspberry Pi](./configure-pi.md)
2. [Configure PiAware](configure-piaware.md)
3. [Configure Camera](./configure-camera.md)
2. [Configure Camera](./configure-camera.md)

## System Operation
After the system has been installed, follow the steps below to set up the hardware and start the software.
Expand Down
10 changes: 0 additions & 10 deletions SkyScan.code-workspace

This file was deleted.

20 changes: 20 additions & 0 deletions config.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
printf "\n\nCreating SkyScan Project Folder..."
mkdir ./SkyScan
cd SkyScan

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--------------------------------------------------------------------\n\n"
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ services:
- mqtt

mqtt:
image: iqtlabs/skyscan-mqtt
image: iqtlabs/edgetech-mqtt
ports:
- "9001:9001"
- "1883:1883"
Expand Down
5 changes: 0 additions & 5 deletions mqtt/Dockerfile

This file was deleted.

5 changes: 0 additions & 5 deletions mqtt/README.md

This file was deleted.

3 changes: 0 additions & 3 deletions mqtt/mosquitto.conf

This file was deleted.

0 comments on commit 3d3db34

Please sign in to comment.