From d5539285f85f3487a871018ba0f3fc327d90f999 Mon Sep 17 00:00:00 2001 From: Kirill Shklyaev Date: Tue, 14 Nov 2023 19:49:29 +0300 Subject: [PATCH] Update README.md --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 80c8a7e..5193976 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,14 @@ Self-host for any-sync, designed for review and testing purposes. ``` make start ``` + If for some reason you do not have the make utility or you are a Windows user, use the following commands: + ``` + # Generate config + docker build -t generateconfig -f Dockerfile-generateconfig . + docker run --rm -v ${PWD}/etc:/opt/processing/etc --name any-sync-generator generateconfig + # Run containers + docker compose up -d + ``` * stop stand: ``` make stop