From 09f4985efd3e86656a6b8f7f3aa471f12e35977e Mon Sep 17 00:00:00 2001 From: Eugene Date: Tue, 5 Jul 2022 21:29:06 +0200 Subject: [PATCH] Created Getting started on Docker (markdown) --- Getting-started-on-Docker.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Getting-started-on-Docker.md diff --git a/Getting-started-on-Docker.md b/Getting-started-on-Docker.md new file mode 100644 index 0000000..a2865a7 --- /dev/null +++ b/Getting-started-on-Docker.md @@ -0,0 +1,13 @@ +# Storage + +Warpgate will need one volume to store its configuration and database in. + +# Setup + +`docker run --rm --read-only -it -v :/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 -p :8888 -p :2222 -it -v :/data ghcr.io/warp-tech/warpgate` \ No newline at end of file