From b066ef2c6477d66736ba20b14d11b3bd73b94cd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20P=C3=A9rez=20Arcas?= Date: Mon, 30 Mar 2026 08:27:06 +0000 Subject: [PATCH] =?UTF-8?q?A=C3=B1adir=20z1/prepare-app.sh?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- z1/prepare-app.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 z1/prepare-app.sh diff --git a/z1/prepare-app.sh b/z1/prepare-app.sh new file mode 100644 index 0000000..e27f813 --- /dev/null +++ b/z1/prepare-app.sh @@ -0,0 +1,11 @@ +#!/bin/bash +set -e + +echo "Preparing app..." + +docker network create zkt_net 2>/dev/null || true +docker volume create zkt_db_data 2>/dev/null || true + +docker compose build + +echo "App prepared." \ No newline at end of file