generated from IQTLabs/edgetech-template
-
Notifications
You must be signed in to change notification settings - Fork 1
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
f52c51b
commit 2db21a6
Showing
4 changed files
with
90 additions
and
196 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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,31 +1,55 @@ | ||
version: "3" | ||
|
||
networks: | ||
skyscan: | ||
driver: bridge | ||
driver_opts: | ||
com.docker.network.driver.mtu: 900 | ||
|
||
services: | ||
|
||
mqtt: | ||
image: iqtlabs/edgetech-mqtt:latest | ||
networks: | ||
- skyscan | ||
image: iqtlabs/edgetech-mqtt-dev:latest | ||
ports: | ||
- "1883:1883" | ||
- "9001:9001" | ||
build: | ||
context: ./mqtt | ||
dockerfile: ./Dockerfile | ||
restart: unless-stopped | ||
logging: | ||
driver: "json-file" | ||
options: | ||
max-size: "10M" | ||
max-file: "10" | ||
template: | ||
image: iqtlabs/edgetech-template:latest | ||
build: | ||
context: ./template | ||
dockerfile: ./Dockerfile | ||
|
||
controller: | ||
networks: | ||
- skyscan | ||
image: iqtlabs/edgetech-axis-ptz-controller:latest | ||
volumes: | ||
- ./data/to_sort:/data/to_sort | ||
restart: unless-stopped | ||
depends_on: | ||
depends_on: | ||
- mqtt | ||
env_file: | ||
- .env | ||
- axis-ptz-controller.env | ||
|
||
occlusion-mapper: | ||
networks: | ||
- skyscan | ||
image: iqtlabs/edgetech-occlusion-mapper:latest | ||
volumes: | ||
- ./data/mapping:/data/mapping | ||
ports: | ||
- "5000:5000" | ||
restart: unless-stopped | ||
depends_on: | ||
- mqtt | ||
logging: | ||
driver: "json-file" | ||
options: | ||
max-size: "10M" | ||
max-file: "10" | ||
env_file: | ||
- template.env | ||
- .env |
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 |
---|---|---|
@@ -1,2 +1,25 @@ | ||
PROJECT_NAME=<Project Name> | ||
HOSTNAME=<Name of the Host Machine where SkyScan will be running> | ||
MQTT_IP=mqtt | ||
|
||
TRIPOD_LATITUDE=<The Latitude position of the Tripod> | ||
TRIPOD_LONGITUDE=<The Longitude position of the Tripod> | ||
TRIPOD_ALTITUDE=<The Alititude of the Tripod> | ||
|
||
YAW=0.0 | ||
PITCH=0.0 | ||
ROLL=0.0 | ||
|
||
CAMERA_IP=<IP address for the camera> | ||
#CAMERA_USER=<Axis Camera username> | ||
#CAMERA_PASSWORD=<Axis Camera password> | ||
|
||
MAPPING_FILEPATH=/data/mapping/occlusion.json | ||
|
||
#axis-ptz topics | ||
CONFIG_TOPIC=/${PROJECT_NAME}/${HOSTNAME}/Config/skyscan-c2/JSON | ||
ORIENTATION_TOPIC=/${PROJECT_NAME}/${HOSTNAME}/Orientation/edgetech-auto-orienter/JSON | ||
IMAGE_FILENAME_TOPIC=/${PROJECT_NAME}/${HOSTNAME}/Image_Filename/edgetech-axis-ptz-controller/JSON | ||
IMAGE_CAPTURE_TOPIC=/${PROJECT_NAME}/${HOSTNAME}/Image_Capture/edgetech-axis-ptz-controller/JSON | ||
MANUAL_CONTROL_TOPIC=/${PROJECT_NAME}/${HOSTNAME}/Manual_Control/edgetech-axis-ptz-controller/JSON | ||
MAPPING_FILEPATH=/data/mapping/occlusion.json | ||
LOGGER_TOPIC=/${PROJECT_NAME}/${HOSTNAME}/Logger/edgetech-axis-ptz-controller/JSON |