tsaotun version 0.8.4
Pre-release
Pre-release
Releases
- 0.8.4 -- Nevermind, just a typo fixed.
Status quo
- Currently support following commands:
- tsaotun
version, info, inspect, images, pull, build, run, save, logs, stats, rename, restart, exec, rmi, rm, ps, top, history, cp
- tsaotun container
inspect, run, logs, stats, rename, restart, exec ,rm, ls, top, cp
- tsaotun image
inspect, ls, pull, build, save, rm, history
- tsaotun network
inspect, ls, create, rm, remove, connect, disconnect
- tsaotun volume
inspect, ls, create, rm, remove
- tsaotun addon
ls, enable, disable, inspect
- tsaotun
Feature
- You can run any command docker can run on Tsaotun.
- It's written in Python with love of API of docker, so you can tune it by yourself!
- It means you can have your own implementation of docker command line tool. 😏
Install
Normal Way
pip install tsaotun
, or- Clone the repo, and
python ./setup.py install
Docker Way
- Pull from docker hub
docker pull qazbnm456/tsaotun
docker run --rm -v /var/run/docker.sock:/var/run/docker.sock qazbnm456/tsaotun version
- Build it yourself
- Dockerfile is provided, and you can build it with:
docker build -t tsaotun .
. Once you finished, you'd like to run any command, such as:docker run --rm -v /var/run/docker.sock:/var/run/docker.sock tsaotun version
- Dockerfile is provided, and you can build it with: