xenfra 0.1.5__tar.gz → 0.1.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {xenfra-0.1.5 → xenfra-0.1.6}/PKG-INFO +1 -1
- {xenfra-0.1.5 → xenfra-0.1.6}/pyproject.toml +1 -1
- {xenfra-0.1.5 → xenfra-0.1.6}/src/xenfra/recipes.py +6 -0
- {xenfra-0.1.5 → xenfra-0.1.6}/README.md +0 -0
- {xenfra-0.1.5 → xenfra-0.1.6}/src/xenfra/__init__.py +0 -0
- {xenfra-0.1.5 → xenfra-0.1.6}/src/xenfra/cli.py +0 -0
- {xenfra-0.1.5 → xenfra-0.1.6}/src/xenfra/dockerizer.py +0 -0
- {xenfra-0.1.5 → xenfra-0.1.6}/src/xenfra/engine.py +0 -0
- {xenfra-0.1.5 → xenfra-0.1.6}/src/xenfra/utils.py +0 -0
|
@@ -56,6 +56,12 @@ curl -LsSf 'https://dl.cloudsmith.io/public/caddy/stable/debian.deb.txt' | tee /
|
|
|
56
56
|
apt-get update
|
|
57
57
|
apt-get install -y caddy
|
|
58
58
|
|
|
59
|
+
# --- Stop and disable global Caddy to prevent port conflicts ---
|
|
60
|
+
echo "🛑 Stopping global Caddy service to free up ports..." >> $LOG
|
|
61
|
+
systemctl stop caddy || true
|
|
62
|
+
systemctl disable caddy || true
|
|
63
|
+
# ------------------------------------------------------------------
|
|
64
|
+
|
|
59
65
|
echo "🚀 [5/6] Starting application with Docker Compose..." >> $LOG
|
|
60
66
|
cd /root/app
|
|
61
67
|
docker-compose -f /root/app/docker-compose.yml up -d
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|