-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,7 +51,7 @@ Every chat message is an empty commit to the repo, and is immediately pushed to | |
|
||
Maybe slightly in order of importance - but not necessarily order of implementation. I am doing this 95% for fun, so features will get added if, where and when I feel inspired: | ||
|
||
* [Support sending file attachments](https://github.com/JKrag/GitSlick/issues/1). | ||
* [Support sending file attachments](https://github.com/JKrag/GitSlick/issues/1). | ||
* [Dockerize the chat runtime](https://github.com/JKrag/GitSlick/issues/3) | ||
* [Private message support, just for the fun of it](https://github.com/JKrag/GitSlick/issues/4) | ||
* [Support running in split-screen terminal](https://github.com/JKrag/GitSlick/issues/5) | ||
|
@@ -66,11 +66,11 @@ you acn run the whoe thing in Docker. | |
### Build image | ||
|
||
``` | ||
docker to build -t gitslick . | ||
``` | ||
docker build -t gitslick . | ||
``` | ||
|
||
### Run image | ||
|
||
``` | ||
docker run -it -v ~/.ssh:/tmp/.ssh:ro gitslick -r [email protected]:JKrag/demo.git -e "[email protected]" -n "Whale Hail" | ||
docker run --name tempchat --rm -it -v ~/.ssh:/tmp/.ssh:ro gitslick -r [email protected]:JKrag/demo.git -e "[email protected]" -n "Whale Hail" | ||
``` |