feat: with return url

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-11-21 21:53:39 +01:00
parent 6bf847a24a
commit 9510b8fc42
13 changed files with 312 additions and 96 deletions

7
scripts/local_down.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
set -e
cuddle render_template --template-file $TMP/docker-compose.local_up.yml.tmpl --dest $TMP/docker-compose.local_up.yml
docker compose -f $TMP/docker-compose.local_up.yml down -v

9
scripts/local_up.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
set -e
cuddle render_template --template-file $TMP/docker-compose.local_up.yml.tmpl --dest $TMP/docker-compose.local_up.yml
docker compose -f $TMP/docker-compose.local_up.yml up -d --remove-orphans --build
sleep 3