This file contains hidden or 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
| version: '3' | |
| services: | |
| master: | |
| build: | |
| context: . | |
| dockerfile: ./master.Dockerfile | |
| working_dir: /root/playbooks | |
| volumes: | |
| - /c/repos/ansible/playbooks:/root/playbooks | |
| - /c/repos/ansible/config:/etc/ansible |
This file contains hidden or 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
| #!/bin/bash | |
| # | |
| # UPDATE: see here for pre-built PyTorch 1.0/1.1 pip wheels | |
| # for JetPack 4.2 and Jetson Nano/TX2/Xavier: | |
| # | |
| # https://devtalk.nvidia.com/default/topic/1049071/jetson-nano/pytorch-for-jetson-nano/ | |
| # | |
| # pyTorch install script for NVIDIA Jetson TX1/TX2, | |
| # from a fresh flashing of JetPack 2.3.1 / JetPack 3.0 / JetPack 3.1 | |
| # |
This file contains hidden or 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
| FROM ubuntu:18.04 | |
| USER root | |
| RUN apt-get update && apt-get -y --no-install-recommends install \ | |
| sudo \ | |
| vim \ | |
| wget \ | |
| build-essential \ | |
| pkg-config |
This file contains hidden or 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
| # The following image was genarated from the deepo project: | |
| # https://github.com/ufoym/deepo | |
| # Running from the generator directory: | |
| # python generate.py --cuda-ver=9.2 --cudnn-ver=7 Dockerfile \ | |
| # caffe jupyter opencv python==3.6 | |
| FROM glassbeadlabs/deepo:caffe-py36-cu92-dnn7 | |
| # Install openpose | |
| # This snippet was adapted from the following fork |
This file contains hidden or 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
| #!/bin/bash | |
| #Jason T. 2-6-2018 | |
| # Check specifically for the run command | |
| if [[ $# -ge 2 && $1 == "run" ]]; then | |
| # Tell docker to share the following folders with the base system | |
| # This allows the docker containers to find CUDA, cuDNN, TensorRT | |
| LIB_MAPS="/usr/lib/aarch64-linux-gnu \ | |
| /usr/local/cuda \ | |
| /usr/local/cuda/lib64" |
This file contains hidden or 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
| # -------------------------------------------------------- | |
| # Camera sample code for Tegra X2/X1 | |
| # | |
| # This program could capture and display video from | |
| # IP CAM, USB webcam, or the Tegra onboard camera. | |
| # Refer to the following blog post for how to set up | |
| # and run the code: | |
| # https://jkjung-avt.github.io/tx2-camera-with-python/ | |
| # | |
| # Written by JK Jung <[email protected]> |