-
-
Notifications
You must be signed in to change notification settings - Fork 125
Getting started on Docker
Eugene edited this page Jul 5, 2022
·
10 revisions
- Image name:
ghcr.io/warp-tech/warpgate
- Image in the GH registry: https://github.com/warp-tech/warpgate/pkgs/container/warpgate
- Volumes required:
/data
- Ports: 2222, 8888
Warpgate will need one volume to store its configuration and database in.
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.
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