https://github.com/cusspvz/openwrt.docker
:minibus: Super small container (3MB) based on Routers OpenWRT Linux OS
https://github.com/cusspvz/openwrt.docker
Last synced: 8 days ago
JSON representation
:minibus: Super small container (3MB) based on Routers OpenWRT Linux OS
- Host: GitHub
- URL: https://github.com/cusspvz/openwrt.docker
- Owner: cusspvz
- Created: 2015-10-03T18:13:54.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-03-03T01:41:09.000Z (about 4 years ago)
- Last Synced: 2025-04-19T23:49:09.807Z (8 days ago)
- Language: Makefile
- Homepage:
- Size: 109 KB
- Stars: 58
- Watchers: 3
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cusspvz/openwrt
:minibus: Super small container (3MB) based on Routers OpenWRT Linux OS
## Usage
### Running bash terminal
```
josemoreira@MacBook-Pro-de-JM ~/G/c/openwrt.docker> docker run --rm -ti cusspvz/openwrt:15.05-x86
=== IMPORTANT ============================
Use 'passwd' to set your login password
this will disable telnet and enable SSH
------------------------------------------BusyBox v1.23.2 (2015-07-25 07:32:21 CEST) built-in shell (ash)
_______ ________ __
| |.-----.-----.-----.| | | |.----.| |_
| - || _ | -__| || | | || _|| _|
|_______|| __|_____|__|__||________||__| |____|
|__| W I R E L E S S F R E E D O M
-----------------------------------------------------
CHAOS CALMER (15.05, r46767)
-----------------------------------------------------
* 1 1/2 oz Gin Shake with a glassful
* 1/4 oz Triple Sec of broken ice and pour
* 3/4 oz Lime Juice unstrained into a goblet.
* 1 1/2 oz Orange Juice
* 1 tsp. Grenadine Syrup
-----------------------------------------------------
root@23c9170005d3:/# ls
bin dev etc lib mnt overlay proc rom root sbin sys tmp usr var www
```### Using as base image
```Dockerfile
FROM cusspvz/openwrt:15.05-x86
RUN opkg install nano git ...
```## Versions
### x86
* **Chaos Calmer** 15.05 - `cusspvz/openwrt:15.05-x86`
* **Barrier Breaker** 14.07 - `cusspvz/openwrt:14.07-x86`
* **Attitude Adjustment** 12.09 - `cusspvz/openwrt:12.09-x86`
* **Backfire** 10.03.1 - `cusspvz/openwrt:10.03.1-x86`
* **Backfire** 10.03 - `cusspvz/openwrt:10.03-x86`### x64
* **Chaos Calmer** 15.05 - `cusspvz/openwrt:15.05-x64`## Developing
### Building image
```bash
ARCH="x86" VERSION="15.05" make build
```