From 996b327a702c6df12c28002e3ef3ff6f1ae39cd8 Mon Sep 17 00:00:00 2001 From: Moises Tapia Date: Sun, 26 Jul 2020 08:22:41 -0500 Subject: [PATCH] Update README.md --- Docker/README.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/Docker/README.md b/Docker/README.md index f5de0cd..7cc42f7 100644 --- a/Docker/README.md +++ b/Docker/README.md @@ -34,6 +34,35 @@ Executing HiddenEye inside of container docker-compose exec hidden python3 HiddenEye.py ``` +# Persist Data + +When we make or buils the service with `docker-compose up --build -d` this persist the data templates in the same folder `WebTemplate`. +If you add the new Template in `WbeTemplate` this will be reflected in the container and yoi can use it. + +To add WebTemplate you juste need add them in this folder and done +- [X] WebTemplate + +# First Start the services + +```bash +docker-compose up --build -d +``` +# Down the container +```bash +docker-compose down +``` +# Stop the services + +```bash +docker-compose stop +``` +# Start the services + +With this command docker-compose will initialize the service stopped + +```bash +docker-compose start +```