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

https://github.com/samedwardes/docker-shell

A baseline docker image for a linux shell environment.
https://github.com/samedwardes/docker-shell

docker docker-image

Last synced: 2 months ago
JSON representation

A baseline docker image for a linux shell environment.

Awesome Lists containing this project

README

          

# Docker Shell

- **Source code**:
- **Docker Hub**:

A baseline docker image for a linux shell environment. Includes commonly used tools:

- Python
- R
- Vim
- Git

## Usage

```bash
# Pull the image
docker pull samedwardes/shell

# Run without a mounted volume
docker run -it --rm --volume samedwardes/shell:latest

# Run with a mounted volume
docker run -it --rm --volume $(pwd):/root/app samedwardes/shell:latest
```