From 924ec33d7393288cce6d7203e90b47ebd2c37201 Mon Sep 17 00:00:00 2001 From: Amol Date: Tue, 13 Aug 2024 15:37:31 +0530 Subject: [PATCH] docs: Update README.md with docker installation instructions --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index eb83b8c5c..c59a19135 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,13 @@ Welcome to OpenSign, the premier open source docusign alternative - document e-s ### Installation -Please refer to the [Installation Guide](INSTALLATION.md) for detailed instructions on how to install OpenSign on your system. +The simplest way to install OpenSign on your own server is using official docker images by running the following command - +``` +export HOST_URL=https://opensign.yourdomain.com && curl --remote-name-all https://raw.githubusercontent.com/OpenSignLabs/OpenSign/docker_beta/docker-compose.yml https://raw.githubusercontent.com/OpenSignLabs/OpenSign/docker_beta/Caddyfile https://raw.githubusercontent.com/OpenSignLabs/OpenSign/docker_beta/.env.local_dev && mv .env.local_dev .env.prod && docker compose up --force-recreate +``` +Make sure that you have `Docker` and `git` installed before you run this command - + +Please refer to the [Installation Guide](https://docs.opensignlabs.com/docs/self-host/docker/run-locally/) for detailed instructions on how to install OpenSign on your system. ---