initial commit

This commit is contained in:
2025-08-31 18:10:39 +00:00
parent fc9d33afd5
commit e330216375
7 changed files with 270 additions and 0 deletions

5
scripts/bs-networks.sh Normal file
View File

@@ -0,0 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail
docker network create --driver overlay --opt encrypted --attachable appNet >/dev/null 2>&1 || true
docker network create --driver overlay --opt encrypted --internal backendNet >/dev/null 2>&1 || true
echo "appNet + backendNet ready."