https://github.com/tgotwig/dev-images
💿 alpine, node, ubuntu
https://github.com/tgotwig/dev-images
Last synced: 5 months ago
JSON representation
💿 alpine, node, ubuntu
- Host: GitHub
- URL: https://github.com/tgotwig/dev-images
- Owner: tgotwig
- Created: 2025-02-14T07:35:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-24T17:53:14.000Z (about 1 year ago)
- Last Synced: 2025-05-07T13:58:54.395Z (about 1 year ago)
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dev-images
A collection of minimal, ready-to-use Docker images with essential CLI tools for developers (amd64 and arm64).

| Image | OS | CMD |
| :-- | :-- | --- |
| [alpine](https://github.com/tgotwig/alpine) | alpine 3.21 | docker run -it --rm tgotwig/alpine |
| [node](https://github.com/tgotwig/node) 23.5.0 | alpine 3.21 | docker run -it --rm tgotwig/node fish |
| [ubuntu](https://github.com/tgotwig/ubuntu) | ubuntu 24.04 | docker run -it --rm tgotwig/ubuntu |
📃 List of commands which should be everywhere (click me)
| Command | Note | Sample |
| :-- | :-- | :-- |
| asdf | For installing programming languages. | |
| cc | For compiling C code. | |
| curl | | |
| fish | Bash replacement with lots of auto-completions. | |
| git | | |
| ip | For getting host IPs. | `ip a` |
| jq | | |
| less | | |
| mediainfo | | |
| micro | | |
| nc | For chatting or to check if port is open. | `nc -zv ` |
| nmap | | |
| nslookup | For getting IPs from dns name. | `nslookup github.com ` |
| ping | | |
| starship | For making the terminal prompt pretty 😊 | |
| task | For having a task runner. | |
| tree | | `tree ` |
| wget | For downloading files. | `wget ` |
| z | For jumping into previously visited folders. | `z ` |
## Implementation status
| Command | Alpine | Node | Ubuntu |
| :-- | :--: | :--: | :--: |
| asdf | ❌ | ❌ | ✅ |
| cc | ❌ | ❌ | ❌ |
| curl | ✅ | ✅ | ✅ |
| fish | ✅ | ✅ | ✅ |
| git | ❌ | ❌ | ✅ |
| ip | ✅ | ✅ | ✅ |
| jq | ❌ | ❌ | ❌ |
| less | ❌ | ❌ | ❌ |
| mediainfo | ❌ | ❌ | ❌ |
| micro | ❌ | ❌ | ❌ |
| nc | ✅ | ✅ | ✅ |
| nmap | ❌ | ❌ | ✅ |
| nslookup | ✅ | ✅ | ✅ |
| ping | ✅ | ✅ | ✅ |
| starship | ✅ | ✅ | ✅ |
| task | ❌ | ❌ | ✅ |
| tree | ❌ | ❌ | ❌ |
| wget | ✅ | ✅ | ✅ |
| z | ✅ | ✅ | ✅ |
Commands which look different:
- nc
- nslookup
- ping
- wget