https://github.com/sorgom/docker
my personal docker env for development including premake5
https://github.com/sorgom/docker
Last synced: 3 months ago
JSON representation
my personal docker env for development including premake5
- Host: GitHub
- URL: https://github.com/sorgom/docker
- Owner: sorgom
- Created: 2025-03-04T15:13:01.000Z (over 1 year ago)
- Default Branch: dev
- Last Pushed: 2025-05-15T17:51:19.000Z (about 1 year ago)
- Last Synced: 2025-06-07T07:02:32.408Z (about 1 year ago)
- Language: Shell
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker
docker environment for C++ development including
- python
- premake5
## build image
call _dockerBuild.cmd_
## run container
call _dockerRun.cmd_
### mounts
**/git folder**
The folder you cloned this repo into will be mounted to _/git_ folder in container.
So this repo will be _/git/docker_.
**home folder**
The local _dev_ folder will be mounted as user _dev_ ´s home folder.
Advantage:
- the bash history will be kept locally
**github access**
If you want to access gitHub (push / pull) copy your personal _.ssh_ folder into _dev_ folder.
**your aliases**
For personal aliases create _.local_aliases_ in _dev_ folder.
## local tree
```
docker
├── dev
│ ├── .bash_aliases
│ ├── .bash_history
│ ├── .bashrc
│ ├── .gitconfig
│ ├── .local_aliases
│ └── .ssh/
├── dockerBuild.cmd
├── Dockerfile
├── dockerRun.cmd
├── .gitattributes
├── .gitignore
├── .gitmodules
├── README.md
├── submodules/
```