-
-
Notifications
You must be signed in to change notification settings - Fork 122
Getting started on Docker
Eugene edited this page Apr 24, 2023
·
10 revisions
- Image name:
ghcr.io/warp-tech/warpgate
- Image in the GHCR: https://github.com/warp-tech/warpgate/pkgs/container/warpgate
- Volumes required:
/data
- Ports: 2222 (SSH), 8888 (HTTP), 33306 (MySQL)
- Download the Docker Compose config.
- Run
docker compose run warpgate setup
to generate a config file. - Run
docker compose up
to start.
The Warpgate image requires one volume to store its configuration and database in, mounted at /data
.
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, now is the best time to replace the self-signed certificate inside the data volume.
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