Putting larger files into git.uibk.ac.at repositories
git lfs install # initialize the Git LFS project git lfs track "*.iso" # select the file extensions git lfs track "*.dat" # select the file extensions git lfs track "*.mp4" # select the file extensions
Make sure that .gitattributes is tracked by git - otherwise Git LFS wont work properly for people cloning the project.
git add .gitattributes
Dockerfile to genrate the docker image. You dont have to clone this repo - just use the uibk docker registry.
docker login docker.uibk.ac.at
and build/pull from the uibk registry:
docker build -t docker.uibk.ac.at/c703101/obergurgl-2107:ros-example . docker pull docker.uibk.ac.at/c703101/obergurgl-2017:ros-example
tagging a container
docker tag DOCKERID docker.uibk.ac.at/c703101/obergurgl-2017:TAG
pushing to the uibk registry
docker push docker.uibk.ac.at/c703101/obergurgl-2017