├── .bash_aliases ├── .dockerignore ├── .gitignore ├── Dependency ├── Dockerfile ├── README.md ├── ReleaseProcess.md ├── dlwRun.sh ├── script ├── ArgumentsDockerVerifyInclude.sh ├── ArgumentsGetInclude.sh ├── ArgumentsGetTest.sh ├── ArgumentsMainInclude.sh ├── ArrayMapTest.sh ├── ArrayMapTestInclude.sh ├── ComponentListVerifyInclude.sh ├── ImageGUIDlist.sh ├── ImageGUIDlistTest.sh ├── MessageInclude.sh ├── PacketInclude.sh ├── PacketIncludeMakefile.sh ├── PacketIncludeTest.sh ├── VirtCmmdInterface.sh ├── VirtDockerCmmdSingle.sh ├── VirtDockerContainerInterface.sh ├── VirtDockerImageInterface.sh ├── VirtDockerInterface.sh ├── VirtDockerReportingCmmdMultiInterface.sh ├── VirtDockerReportingCmmdSingleInterface.sh ├── VirtDockerReportingInterface.sh ├── command │ ├── attach.sh │ ├── build.sh │ ├── create.sh │ ├── diff.orig.sh │ ├── diff.sh │ ├── dlw.sh │ ├── help.sh │ ├── helpDoc.sh │ ├── images.sh │ ├── itest.sh │ ├── kill.sh │ ├── logs.sh │ ├── pause.sh │ ├── port.sh │ ├── ps.sh │ ├── restart.sh │ ├── rm.sh │ ├── rmi.sh │ ├── run.sh │ ├── screen.sh │ ├── start.sh │ ├── stop.sh │ ├── tmux.sh │ ├── top.sh │ ├── unpause.sh │ ├── version.sh │ └── watch.sh ├── makefile └── makefileFunExtend.sh └── scriptInstall ├── dlwLogin.sh ├── install.sh ├── installPackages.sh ├── installPrep_docker-engine.sh ├── installPrep_tmux.sh ├── installUser_dlw.sh ├── installUsers.sh ├── userUID_GID_Reassign.sh └── versionSpecifiers.sh /.bash_aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/.bash_aliases -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | *.sh~ 2 | Dockerfile~ 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/.gitignore -------------------------------------------------------------------------------- /Dependency: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/Dependency -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/ReleaseProcess.md -------------------------------------------------------------------------------- /dlwRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/dlwRun.sh -------------------------------------------------------------------------------- /script/ArgumentsDockerVerifyInclude.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/ArgumentsDockerVerifyInclude.sh -------------------------------------------------------------------------------- /script/ArgumentsGetInclude.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/ArgumentsGetInclude.sh -------------------------------------------------------------------------------- /script/ArgumentsGetTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/ArgumentsGetTest.sh -------------------------------------------------------------------------------- /script/ArgumentsMainInclude.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/ArgumentsMainInclude.sh -------------------------------------------------------------------------------- /script/ArrayMapTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/ArrayMapTest.sh -------------------------------------------------------------------------------- /script/ArrayMapTestInclude.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/ArrayMapTestInclude.sh -------------------------------------------------------------------------------- /script/ComponentListVerifyInclude.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/ComponentListVerifyInclude.sh -------------------------------------------------------------------------------- /script/ImageGUIDlist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/ImageGUIDlist.sh -------------------------------------------------------------------------------- /script/ImageGUIDlistTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/ImageGUIDlistTest.sh -------------------------------------------------------------------------------- /script/MessageInclude.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/MessageInclude.sh -------------------------------------------------------------------------------- /script/PacketInclude.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/PacketInclude.sh -------------------------------------------------------------------------------- /script/PacketIncludeMakefile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/PacketIncludeMakefile.sh -------------------------------------------------------------------------------- /script/PacketIncludeTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/PacketIncludeTest.sh -------------------------------------------------------------------------------- /script/VirtCmmdInterface.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/VirtCmmdInterface.sh -------------------------------------------------------------------------------- /script/VirtDockerCmmdSingle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/VirtDockerCmmdSingle.sh -------------------------------------------------------------------------------- /script/VirtDockerContainerInterface.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/VirtDockerContainerInterface.sh -------------------------------------------------------------------------------- /script/VirtDockerImageInterface.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/VirtDockerImageInterface.sh -------------------------------------------------------------------------------- /script/VirtDockerInterface.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/VirtDockerInterface.sh -------------------------------------------------------------------------------- /script/VirtDockerReportingCmmdMultiInterface.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/VirtDockerReportingCmmdMultiInterface.sh -------------------------------------------------------------------------------- /script/VirtDockerReportingCmmdSingleInterface.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/VirtDockerReportingCmmdSingleInterface.sh -------------------------------------------------------------------------------- /script/VirtDockerReportingInterface.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/VirtDockerReportingInterface.sh -------------------------------------------------------------------------------- /script/command/attach.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/attach.sh -------------------------------------------------------------------------------- /script/command/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/build.sh -------------------------------------------------------------------------------- /script/command/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/create.sh -------------------------------------------------------------------------------- /script/command/diff.orig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/diff.orig.sh -------------------------------------------------------------------------------- /script/command/diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/diff.sh -------------------------------------------------------------------------------- /script/command/dlw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/dlw.sh -------------------------------------------------------------------------------- /script/command/help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/help.sh -------------------------------------------------------------------------------- /script/command/helpDoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/helpDoc.sh -------------------------------------------------------------------------------- /script/command/images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/images.sh -------------------------------------------------------------------------------- /script/command/itest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/itest.sh -------------------------------------------------------------------------------- /script/command/kill.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/kill.sh -------------------------------------------------------------------------------- /script/command/logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/logs.sh -------------------------------------------------------------------------------- /script/command/pause.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/pause.sh -------------------------------------------------------------------------------- /script/command/port.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/port.sh -------------------------------------------------------------------------------- /script/command/ps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/ps.sh -------------------------------------------------------------------------------- /script/command/restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/restart.sh -------------------------------------------------------------------------------- /script/command/rm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/rm.sh -------------------------------------------------------------------------------- /script/command/rmi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/rmi.sh -------------------------------------------------------------------------------- /script/command/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/run.sh -------------------------------------------------------------------------------- /script/command/screen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/screen.sh -------------------------------------------------------------------------------- /script/command/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/start.sh -------------------------------------------------------------------------------- /script/command/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/stop.sh -------------------------------------------------------------------------------- /script/command/tmux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/tmux.sh -------------------------------------------------------------------------------- /script/command/top.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/top.sh -------------------------------------------------------------------------------- /script/command/unpause.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/unpause.sh -------------------------------------------------------------------------------- /script/command/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/version.sh -------------------------------------------------------------------------------- /script/command/watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/command/watch.sh -------------------------------------------------------------------------------- /script/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/makefile -------------------------------------------------------------------------------- /script/makefileFunExtend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/script/makefileFunExtend.sh -------------------------------------------------------------------------------- /scriptInstall/dlwLogin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/scriptInstall/dlwLogin.sh -------------------------------------------------------------------------------- /scriptInstall/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/scriptInstall/install.sh -------------------------------------------------------------------------------- /scriptInstall/installPackages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/scriptInstall/installPackages.sh -------------------------------------------------------------------------------- /scriptInstall/installPrep_docker-engine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/scriptInstall/installPrep_docker-engine.sh -------------------------------------------------------------------------------- /scriptInstall/installPrep_tmux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/scriptInstall/installPrep_tmux.sh -------------------------------------------------------------------------------- /scriptInstall/installUser_dlw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/scriptInstall/installUser_dlw.sh -------------------------------------------------------------------------------- /scriptInstall/installUsers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/scriptInstall/installUsers.sh -------------------------------------------------------------------------------- /scriptInstall/userUID_GID_Reassign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/scriptInstall/userUID_GID_Reassign.sh -------------------------------------------------------------------------------- /scriptInstall/versionSpecifiers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhisperingChaos/DeveloperLocalWorkbenchForDocker/HEAD/scriptInstall/versionSpecifiers.sh --------------------------------------------------------------------------------