Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dimitarpetrov/toolkit

Docker container mirror of my dev environment.
https://github.com/dimitarpetrov/toolkit

developer-tools development-environment devtools docker docker-container docker-image

Last synced: 24 days ago
JSON representation

Docker container mirror of my dev environment.

Awesome Lists containing this project

README

        

# toolkit

Docker container mirror of my dev environment.

It contains my `zsh` and `vim` setup as well as some day to day used cli tools.

### How to run

```
docker run -it --rm -v /var/run/docker.sock:/var/run/docker.sock --name toolkit dnpetrovv/toolkit
```

#### Run in Current Working Directory

```
docker run -it --rm -v /var/run/docker.sock:/var/run/docker.sock -v ${PWD}:/root/${PWD##*/} -w /root/${PWD##*/} --name toolkit dnpetrovv/toolkit
```
This will run the container and mount the current working directory under `/root/` `(~/)` inside the container. This way you can make any changes to your local file system form inside the container.