From 5d7927a8f19cf2ee85db525b6f9ff5490152dd02 Mon Sep 17 00:00:00 2001 From: Simon Beginn Date: Sun, 23 Feb 2020 14:07:12 +0100 Subject: [PATCH] Removed double README and minimized older one --- docker/README.md | 34 ++----------------------- docker/docker-py3-kms-minimal/README.md | 15 ----------- 2 files changed, 2 insertions(+), 47 deletions(-) delete mode 100644 docker/docker-py3-kms-minimal/README.md diff --git a/docker/README.md b/docker/README.md index 43a8dad..8e877c6 100644 --- a/docker/README.md +++ b/docker/README.md @@ -1,28 +1,3 @@ -# History -_py-kms_ is a port of node-kms created by [cyrozap](http://forums.mydigitallife.info/members/183074-markedsword), which is a port of either the C#, C++, or .NET implementations of KMS Emulator. The original version was written by [CODYQX4](http://forums.mydigitallife.info/members/89933-CODYQX4) and is derived from the reverse-engineered code of Microsoft's official KMS. - -# Features -- Responds to V4, V5, and V6 KMS requests. -- Supports activating: - - Windows Vista - - Windows 7 - - Windows 8 - - Windows 8.1 - - Windows 10 ( 1511 / 1607 / 1703 / 1709 / 1803 / 1809 ) - - Windows Server 2008 - - Windows Server 2008 R2 - - Windows Server 2012 - - Windows Server 2012 R2 - - Windows Server 2016 - - Windows Server 2019 - - Microsoft Office 2010 ( Volume License ) - - Microsoft Office 2013 ( Volume License ) - - Microsoft Office 2016 ( Volume License ) - - Microsoft Office 2019 ( Volume License ) -- It's written in Python: - - tested with Python 2.7.15rc1 - - tested with Python 3.6.7 - # Usage ``` docker run -it -d --name py3-kms \ @@ -39,7 +14,8 @@ docker run -it -d --name py3-kms \ -v /var/log:/var/log:rw \ --restart unless-stopped pykmsorg/py-kms:[TAG] ``` -_Make sure to insert at `[TAG]` your wanted edition! The default is `latest`, which does not include SQLLite support. For all available tag check [this](https://hub.docker.com/r/pykmsorg/py-kms) out._ +_Make sure to insert at `[TAG]` your wanted edition! The default is `latest`, which does not include SQLLite support. For all available tag check [this](https://hub.docker.com/r/pykmsorg/py-kms/tags) out._ +Please note you can omit the `SQLITE` option if you plan to use the minimal ot `latest` image # Sqlite-web A web-based SQLite database browser written in Python. @@ -113,9 +89,3 @@ ENV LOGFILE /var/log/pykms_logserver.log ENV LOGSIZE "" # Use this flag to set a maximum size (in MB) to the output log file. Desactivated by default. ``` - -# Other Important Stuff -Consult the [Wiki](https://github.com/SystemRage/py-kms/wiki) for more informations about activation with _py-kms_ and to get GVLK keys. - -# License - [![License](https://img.shields.io/badge/license-unlicense-lightgray.svg)](https://github.com/SystemRage/py-kms/blob/master/LICENSE) diff --git a/docker/docker-py3-kms-minimal/README.md b/docker/docker-py3-kms-minimal/README.md deleted file mode 100644 index 266a8cf..0000000 --- a/docker/docker-py3-kms-minimal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -# HowTo start the image... -``` -docker run -it -d --name py3-kms \ - -p 8080:8080 \ - -p 1688:1688 \ - -e IP=0.0.0.0 \ - -e PORT=1688 \ - -e HWID=RANDOM \ - -e LOGLEVEL=INFO \ - -e LOGSIZE=2 \ - -e LOGFILE=/var/log/py3-kms.log \ - -v /etc/localtime:/etc/localtime:ro \ - -v /var/log:/var/log:rw \ - --restart unless-stopped pykmsorg/py-kms:minimal -```