Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/luketainton/warpd-docker
https://github.com/luketainton/warpd-docker
Last synced: about 14 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/luketainton/warpd-docker
- Owner: luketainton
- Created: 2021-11-20T19:18:40.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-19T12:38:02.000Z (over 1 year ago)
- Last Synced: 2023-10-19T13:39:24.381Z (over 1 year ago)
- Language: Dockerfile
- Homepage:
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# warpd-docker
Dockerised version of the warpd server.
## How did this start?
Basically, [issue #33](https://github.com/spolu/warp/issues/33) on the upstream repository. The hosted server for the warp
software was taken down and users now need to host their own.## How do I use this?
1. Install Docker. See the [documentation](https://docs.docker.com/install) for more information.
2. Run `docker pull registry.gitlab.com/luketainton/warpd-docker:latest` to pull the latest image.
3. Run `docker run -d -p 4242:4242 registry.gitlab.com/luketainton/warpd-docker:latest` to run a container.## How do I connect my client?
Referring to [issue #33](https://github.com/spolu/warp/issues/33), you need to run
`WARPD_NO_TLS=true WARPD_ADDRESS=:4242 warp `, where `` is the
IPv4 address of the server you're running the container on. By default, the container will use port `4242`. `` will be replaced by the sub-command you wish to execute.If you don't want to type `WARPD_NO_TLS=true WARPD_ADDRESS=:4242` every time, you can export them as environment variables in your shell start script (`.zshrc`, `.bashrc` etc.):
- `export WARPD_NO_TLS=true`
- `export WARPD_ADDRESS=:4242`You can then run `warp` as normal and it will use the values set in that file instead.