├── .gitignore ├── LICENSE ├── README.md ├── certs └── .gitignore ├── installer ├── uninstaller └── upgrade /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inetum-orleans/docker-devbox/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inetum-orleans/docker-devbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inetum-orleans/docker-devbox/HEAD/README.md -------------------------------------------------------------------------------- /certs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /installer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inetum-orleans/docker-devbox/HEAD/installer -------------------------------------------------------------------------------- /uninstaller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inetum-orleans/docker-devbox/HEAD/uninstaller -------------------------------------------------------------------------------- /upgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inetum-orleans/docker-devbox/HEAD/upgrade --------------------------------------------------------------------------------