From 247c0a7488a70580f6c3126519b7c2f4c58cd489 Mon Sep 17 00:00:00 2001 From: Jiri Tyr Date: Fri, 28 Jan 2022 22:49:54 +0000 Subject: [PATCH] docs: adding documentation for Docker (#88) --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 063a6c5..9b88a38 100644 --- a/README.md +++ b/README.md @@ -26,12 +26,16 @@ This means that channels are just an abstraction - all Smee does is get a payloa ## Deploying your own Smee.io -Smee.io is a simple Node.js application. You can deploy it any way you would deploy any other Node app. The easier solution is probably Heroku, or you can use the `Dockerfile` found in this repository to deploy a container. +Smee.io is a simple Node.js application. You can deploy it any way you would deploy any other Node app. The easier solution is probably Heroku, or you can use Docker: + +```shell +docker run -p 3000:3000 ghcr.io/probot/smee.io +``` Don't forget to point `smee-client` to your instance of `smee.io`: -``` -smee --url https://your-smee.io/channel +```shell +smee --url https://your-smee.io/channel ``` ### Running multiple instances of Smee.io