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.
- Host: GitHub
- URL: https://github.com/samedwardes/docker-shell
- Owner: SamEdwardes
- Created: 2022-12-16T18:35:49.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-12-29T15:16:41.000Z (6 months ago)
- Last Synced: 2026-01-01T19:15:05.461Z (6 months ago)
- Topics: docker, docker-image
- Language: Just
- Homepage: https://hub.docker.com/r/samedwardes/shell
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```