Skip to content

Getting started on Docker

Eugene edited this page Jul 5, 2022 · 10 revisions

TL;DR

Storage

Warpgate will need one volume to store its configuration and database in.

Setup

docker run --rm -it -v <data dir>:/data ghcr.io/warp-tech/warpgate setup

If you have a valid SSL certificate & key for your domain, you can now replace the self-signed certificate inside the data volume with it.

Running

docker run --rm --name warpgate -p <host https port>:8888 -p <host ssh port>:2222 -it -v <data dir>:/data ghcr.io/warp-tech/warpgate

Up next