├── .gitignore ├── README.md ├── example_wrapper.sh ├── images └── .gitignore ├── install └── install_apptainer.sh ├── mount ├── 99-linux_setup_env.sh ├── 99-mrs_env.sh ├── README.md ├── apptainer_bashrc.sh ├── apptainer_profile.sh ├── apptainer_vimrc └── apptainer_zshrc.sh ├── overlays ├── .gitignore └── .gitkeep ├── recipes ├── stable_from_apt │ ├── build.sh │ └── recipe.def ├── stable_from_docker │ ├── build.sh │ └── recipe.def └── user_modifications_from_existing_img │ ├── build.sh │ └── recipe.def ├── scripts ├── convert_sandbox.sh ├── create_overlay.sh └── embed_overlay.sh └── user_ros_workspace ├── .gitignore ├── .gitkeep └── src └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctu-mrs/mrs_apptainer/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctu-mrs/mrs_apptainer/HEAD/README.md -------------------------------------------------------------------------------- /example_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctu-mrs/mrs_apptainer/HEAD/example_wrapper.sh -------------------------------------------------------------------------------- /images/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /install/install_apptainer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctu-mrs/mrs_apptainer/HEAD/install/install_apptainer.sh -------------------------------------------------------------------------------- /mount/99-linux_setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctu-mrs/mrs_apptainer/HEAD/mount/99-linux_setup_env.sh -------------------------------------------------------------------------------- /mount/99-mrs_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctu-mrs/mrs_apptainer/HEAD/mount/99-mrs_env.sh -------------------------------------------------------------------------------- /mount/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctu-mrs/mrs_apptainer/HEAD/mount/README.md -------------------------------------------------------------------------------- /mount/apptainer_bashrc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctu-mrs/mrs_apptainer/HEAD/mount/apptainer_bashrc.sh -------------------------------------------------------------------------------- /mount/apptainer_profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctu-mrs/mrs_apptainer/HEAD/mount/apptainer_profile.sh -------------------------------------------------------------------------------- /mount/apptainer_vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctu-mrs/mrs_apptainer/HEAD/mount/apptainer_vimrc -------------------------------------------------------------------------------- /mount/apptainer_zshrc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctu-mrs/mrs_apptainer/HEAD/mount/apptainer_zshrc.sh -------------------------------------------------------------------------------- /overlays/.gitignore: -------------------------------------------------------------------------------- 1 | *.img 2 | -------------------------------------------------------------------------------- /overlays/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/stable_from_apt/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctu-mrs/mrs_apptainer/HEAD/recipes/stable_from_apt/build.sh -------------------------------------------------------------------------------- /recipes/stable_from_apt/recipe.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctu-mrs/mrs_apptainer/HEAD/recipes/stable_from_apt/recipe.def -------------------------------------------------------------------------------- /recipes/stable_from_docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctu-mrs/mrs_apptainer/HEAD/recipes/stable_from_docker/build.sh -------------------------------------------------------------------------------- /recipes/stable_from_docker/recipe.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctu-mrs/mrs_apptainer/HEAD/recipes/stable_from_docker/recipe.def -------------------------------------------------------------------------------- /recipes/user_modifications_from_existing_img/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctu-mrs/mrs_apptainer/HEAD/recipes/user_modifications_from_existing_img/build.sh -------------------------------------------------------------------------------- /recipes/user_modifications_from_existing_img/recipe.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctu-mrs/mrs_apptainer/HEAD/recipes/user_modifications_from_existing_img/recipe.def -------------------------------------------------------------------------------- /scripts/convert_sandbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctu-mrs/mrs_apptainer/HEAD/scripts/convert_sandbox.sh -------------------------------------------------------------------------------- /scripts/create_overlay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctu-mrs/mrs_apptainer/HEAD/scripts/create_overlay.sh -------------------------------------------------------------------------------- /scripts/embed_overlay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctu-mrs/mrs_apptainer/HEAD/scripts/embed_overlay.sh -------------------------------------------------------------------------------- /user_ros_workspace/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctu-mrs/mrs_apptainer/HEAD/user_ros_workspace/.gitignore -------------------------------------------------------------------------------- /user_ros_workspace/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /user_ros_workspace/src/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------