this repo has no description
1# knot-docker
2
3## quickstart
4
5- register a knot on [tangled.sh/knots](https://tangled.sh/knot)
6- copy `.env.example` to `.env`
7- fill the host name and secret in the `.env` file
8- run `docker-compose up -d`
9
10## ssh client setup
11
12the ssh daemon runs on port 2222. you can configure your ssh client to use port
132222 to push code to the server by adding the following to your ssh config:
14
15```
16Host knot.example.com
17 User git
18 Port 2222
19```