From ea52bf7b382e0ffa7af95e358b1a65f32e577eaf Mon Sep 17 00:00:00 2001 From: Andrey Petrov Date: Sun, 14 Dec 2014 17:45:33 -0800 Subject: [PATCH] Remove TODO, move Dockerfile notes. --- README.md | 38 +------------------------------------- 1 file changed, 1 insertion(+), 37 deletions(-) diff --git a/README.md b/README.md index 750b296..af2ccd9 100644 --- a/README.md +++ b/README.md @@ -49,17 +49,8 @@ $ docker pull alvin/ssh-chat $ docker run -d -p 0.0.0.0:(your host machine port):2022 --name ssh-chat alvin/ssh-chat ``` -Or you can build your own image: +See notes in the header of our Dockerfile for details on building your own image. -``` -$ docker build -t (your-docker-username)/ssh-chat . -``` - -then run it: - -``` -$ docker run -d -p 0.0.0.0:(your host machine port):2022 --name ssh-chat (your-docker-username)/ssh-chat -``` ## Developing @@ -67,33 +58,6 @@ If you're developing on this repo, there is a handy Makefile that should set things up with `make run`. -## TODO: - -* [x] Welcome message. -* [x] set term width properly -* [x] client map rather than list -* [x] backfill chat history -* [x] tab completion -* [x] /ban -* [ ] /ban by ip -* [x] /help -* [x] /about -* [x] /list -* [x] /nick -* [x] pubkey fingerprint -* [x] truncate usernames -* [ ] rename collision bug -* [ ] op ops on join -* [ ] piped stdout bug -* [ ] saner sanitizing of inputs (version string, allow space/period) -* [x] Some tests. -* [ ] More tests. -* [ ] Even more tests. -* [ ] Lots of refactoring -* [ ] Pull out the chat-related stuff into isolation from the ssh serving - stuff - - ## License MIT