diff --git a/docs/installation/docker-compose/index.md b/docs/installation/docker-compose/index.md
index 8d240584b..e54d700b6 100644
--- a/docs/installation/docker-compose/index.md
+++ b/docs/installation/docker-compose/index.md
@@ -188,4 +188,4 @@ Afterwards, when you login to the AliasVault web app, you should now be able to
{: .note }
Important: DNS propagation can take up to 24-48 hours. During this time, email delivery might be inconsistent.
-If you encounter any issues, feel free to join the [Discord chat](https://discord.gg/DsaXMTEtpF) to get help from other users and maintainers.
\ No newline at end of file
+If you encounter any issues, feel free to join the [Discord chat](https://discord.gg/DsaXMTEtpF) to get help from other users and maintainers.
diff --git a/docs/installation/script/index-bak.md b/docs/installation/script/index-bak.md
deleted file mode 100644
index 068e54638..000000000
--- a/docs/installation/script/index-bak.md
+++ /dev/null
@@ -1,73 +0,0 @@
----
-layout: default
-title: Installer Script (multi-container)
-parent: Self-host Installs
-nav_order: 1
-has_children: true
----
-
-# Installer Script (multi-container)
-
-The installer script provides a managed, production-ready deployment of AliasVault using multiple Docker containers. This method includes automatic SSL certificates, built-in reverse proxy, and CLI-based management tools.
-
-{: .important }
-> **Best for:** VPS, cloud hosting (AWS, Azure, DigitalOcean), dedicated servers with direct internet access
-
-1. **New Installation?** Start with the [Installation Guide](./installation)
-2. **Upgrading?** Check the [Update Guide](./update/)
-3. **Need Help?** Visit [Troubleshooting](./troubleshooting) or join our [Discord](https://discord.gg/DsaXMTEtpF)
-
-## 📚 Documentation
-
-
-
-
-
🚀 Getting Started
-
Initial installation and configuration
-
-
-
-
-
🔄 Updates & Maintenance
-
Keep your instance up-to-date
-
-
-
-
-
❓ Help & Support
-
Troubleshooting and assistance
-
-
-
-
-
----
-
-## Architecture Overview
-
-The installer script deploys AliasVault as a multi-container application:
-
-| Container | Purpose |
-|-----------|---------|
-| **reverse-proxy** | Nginx reverse proxy with SSL termination |
-| **client** | Web interface (Blazor WebAssembly) |
-| **api** | REST API backend |
-| **admin** | Admin portal |
-| **postgres** | PostgreSQL database |
-| **smtp** | Email server for aliases |
-| **task-runner** | Background jobs and maintenance |
-
-All containers are managed via `./install.sh` (which uses `docker compose` in the background) and configured through a centralized `.env` file.
diff --git a/docs/installation/script/index.md b/docs/installation/script/index.md
index ff4081d16..61b36c7dd 100644
--- a/docs/installation/script/index.md
+++ b/docs/installation/script/index.md
@@ -39,12 +39,10 @@ chmod +x install.sh
```
> **Note**: AliasVault binds to ports 80 and 443 by default. If you want to change the default AliasVault ports you can do so in the `.env` file. Afterwards re-run the `./install.sh install` command to restart the containers with the new port settings.
-3. After the script completes, you can access AliasVault at:
+4. After the script completes, you can access AliasVault at:
- Client: `https://localhost`
- Admin: `https://localhost/admin`
-> Note: if you do not wish to run the `install.sh` wizard but prefer to use Docker commands directly, follow the [manual setup guide](../manual) instead.
-
---
## 2. TLS/SSL configuration
@@ -182,7 +180,8 @@ If you want to disable public registration, you can do so by running the install
./install.sh configure-registration
```
-> Note: disabling public registration means the ability to create new accounts in the AliasVault client is disabled for everyone, including administrators. Accounts cannot be created outside of the client because of the end-to-end encryption employed by AliasVault. So make sure you have created your own account(s) before disabling public registration.
+{: .note }
+Disabling public registration means the ability to create new accounts in the AliasVault client is disabled for everyone, including administrators. Accounts cannot be created outside of the client because of the end-to-end encryption employed by AliasVault. So make sure you have created your own account(s) before disabling public registration.
---
@@ -196,7 +195,8 @@ If you want to entirely disable IP logging, you can do so by running the install
./install.sh configure-ip-logging
```
-> Note: disabling IP logging means the ability to monitor and track abusive users on your AliasVault server is disabled.
+{: .note }
+Disabling IP logging means the ability to monitor and track abusive users on your AliasVault server is disabled.
---