Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3,237 changes: 3,237 additions & 0 deletions DESIGN.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions INSTALLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ This is the simplest method for Debian-based systems like Ubuntu, Debian, Linux

```bash
# Download the latest .deb release
wget https://github.com/nexoral/ContainDB/releases/download/v7.17.42-stable/containDB_7.17.42-stable_amd64.deb
wget https://github.com/nexoral/ContainDB/releases/download/v7.18.42-stable/containDB_7.18.42-stable_amd64.deb

# Install the package
sudo dpkg -i containDB_7.17.42-stable_amd64.deb
sudo dpkg -i containDB_7.18.42-stable_amd64.deb
Comment on lines 21 to +25

Copilot AI Mar 2, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The .deb filename and URL here use containDB_... (camel-case), but the release/installer tooling in this repo uses containdb_${VERSION}_<arch>.deb (lowercase) (see Scripts/installer.sh and Scripts/PackageBuilder.sh). As written, these copy/paste commands are likely to 404 or fail on case-sensitive filesystems; align the docs with the actual release asset naming (or adjust the build/release scripts to match the docs).

Copilot uses AI. Check for mistakes.

# If you see dependency errors, run:
sudo apt-get install -f
Expand Down
2 changes: 1 addition & 1 deletion Scripts/installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ARCH=$(dpkg --print-architecture)

echo "Detected architecture: $ARCH"

VERSION="7.17.42-stable"
VERSION="7.18.42-stable"

if [[ "$ARCH" == "amd64" ]]; then
PKG="containdb_${VERSION}_amd64.deb"
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.17.42-stable
7.18.42-stable
2 changes: 1 addition & 1 deletion npm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "containdb",
"version": "7.17.42",
"version": "7.18.42",
"description": "The Ultimate Docker Database Manager. Automate the creation, management, and monitoring of containerized databases (MongoDB, MySQL, PostgreSQL, Redis) and their GUI tools (Compass, phpMyAdmin, PgAdmin, RedisInsight) with a simple CLI. No complex Docker commands—just productivity.",
"bin": {
"containdb": "./InstallController.js"
Expand Down
2 changes: 1 addition & 1 deletion src/Core/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
)

func main() {
VERSION := "7.17.42-stable"
VERSION := "7.18.42-stable"

Comment on lines 13 to 15

Copilot AI Mar 2, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The version is hardcoded here while src/base/Banner.go and the root VERSION file also define the version separately. To prevent future drift (especially in a PR intended to ensure version consistency), consider using a single source of truth (e.g., reuse base.Version, or inject the version at build time via -ldflags, or read from the VERSION file).

Copilot uses AI. Check for mistakes.
// handle version flag without requiring sudo
if len(os.Args) > 1 && os.Args[1] == "--version" {
Expand Down
2 changes: 1 addition & 1 deletion src/base/Banner.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/fatih/color"
)

const Version = "7.17.42-stable"
const Version = "7.18.42-stable"

func ShowBanner() {
// Define styles
Expand Down
Loading