- 0.9.3 - Add
events
commmand, and fix some option problems - 0.9.4 - Correct the value of
since
argument oflogs
command
-
Currently support following commands:
- tsaotun
version, info, events, inspect, images, pull, build, run, save, logs, stats, stop, rename, restart, exec, rmi, rm, ps, top, history, cp
- tsaotun container
inspect, run, logs, stats, stop, 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, install, rm
- tsaotun
-
Addon feature is testing right now, and each addon should has its own folder with
__init__.py
inside. Addon folder struture shows like:
$HOME
└───Tsaotun
└───addons
├── addon_A - __init__.py, ...
├── addon_B - __init__.py, ...
└───__init__.py
- We now have a sample addon called toolbox, and you can check it out to see how to write an addon on your own.
- 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. 😏
pip install tsaotun
, or- Clone the repo, and
python ./setup.py install
-
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:
Linux | Windows | MacOSX |
---|---|---|
Wanna enrich the possibilities that tsaotun can inspire? Send pull requests or issues immediately!
This project use Apache License, Version 2.0.